Skip to content

Commit

Permalink
clean up builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Oct 24, 2023
1 parent aa7f416 commit a03dade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/builtins/_signatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def _validate_arg_types(self, node):
# note special meaning for -1 in validate_call_args API
expect_num_args = (num_args, -1)

validate_call_args(node, expect_num_args, self._kwargs)
validate_call_args(node, expect_num_args, self._kwargs.keys())

for arg, (_, expected) in zip(node.args, self._inputs):
self._validate_single(arg, expected)
Expand Down

0 comments on commit a03dade

Please sign in to comment.