Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Sep 28, 2023
1 parent 532d4d6 commit fd5f7db
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions vyper/semantics/analysis/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,6 @@ def visit_For(self, node):
else:
# range(CONSTANT, CONSTANT)
arg1_val = derive_folded_value(args[1])
print("arg0 val: ", arg0_val)
print("arg1 val: ", arg1_val)
if not arg1_val:
raise InvalidType("Value must be a literal integer", args[1])
validate_expected_type(args[1], IntegerT.any())
Expand Down

0 comments on commit fd5f7db

Please sign in to comment.