diff --git a/vyper/semantics/analysis/local.py b/vyper/semantics/analysis/local.py index 3fb66f8516..c86714394c 100644 --- a/vyper/semantics/analysis/local.py +++ b/vyper/semantics/analysis/local.py @@ -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):