From bf26d2eccd5f68880804859c3abd47a35e067f15 Mon Sep 17 00:00:00 2001 From: tserg <8017125+tserg@users.noreply.github.com> Date: Fri, 8 Mar 2024 17:36:44 +0800 Subject: [PATCH] fix lint --- vyper/semantics/analysis/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):