Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Jul 20, 2023
1 parent b0f769d commit ead7bc3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions vyper/semantics/analysis/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,6 @@ def types_from_Compare(self, node):
# x in y
left = self.get_possible_types_from_node(node.left)
right = self.get_possible_types_from_node(node.right)
print(left)
print(right)
if any(isinstance(t, EnumT) for t in left) and not any(
isinstance(i, (DArrayT, SArrayT)) for i in right
):
Expand All @@ -258,7 +256,6 @@ def types_from_Compare(self, node):
"Right operand must be Array for membership comparison", node.right
)
types_list = [i for i in left if _is_type_in_list(i, [i.value_type for i in right])]
print("types list: ", types_list)
if not types_list:
raise TypeMismatch(
"Cannot perform membership comparison between dislike types", node
Expand Down

0 comments on commit ead7bc3

Please sign in to comment.