Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Oct 20, 2023
1 parent 94276eb commit b5b2063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/semantics/analysis/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def visit_Call(self, node: vy_ast.Call, typ: VyperType) -> None:
if isinstance(call_type, ContractFunctionT):
# function calls
if call_type.is_internal:
assert self.func is not None # make mypy happy
assert self.func is not None # make mypy happy
self.func.called_functions.add(call_type)
for arg, typ in zip(node.args, call_type.argument_types):
self.visit(arg, typ)
Expand Down

0 comments on commit b5b2063

Please sign in to comment.