Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Mar 8, 2024
1 parent a33c7a8 commit bf26d2e
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 @@ -744,7 +744,7 @@ def visit_Call(self, node: vy_ast.Call, typ: VyperType) -> None:
else:
# builtin functions and interfaces
if self.function_analyzer and hasattr(func_type, "mutability"):
self._check_call_mutability(func_type.mutability) # type: ignore
self._check_call_mutability(func_type.mutability) # type: ignore

arg_types = func_type.infer_arg_types(node, expected_return_typ=typ) # type: ignore
for arg, arg_type in zip(node.args, arg_types):
Expand Down

0 comments on commit bf26d2e

Please sign in to comment.