diff --git a/tests/parser/features/decorators/test_pure.py b/tests/parser/features/decorators/test_pure.py index d193c8838f..0bb6453217 100644 --- a/tests/parser/features/decorators/test_pure.py +++ b/tests/parser/features/decorators/test_pure.py @@ -160,4 +160,4 @@ def bar(a: address) -> uint256: """ ), StateAccessViolation, - ) \ No newline at end of file + ) diff --git a/vyper/semantics/analysis/local.py b/vyper/semantics/analysis/local.py index 104b5b0bf7..f98da0e5f3 100644 --- a/vyper/semantics/analysis/local.py +++ b/vyper/semantics/analysis/local.py @@ -210,7 +210,7 @@ def __init__( for c in fn_node.get_descendants(vy_ast.Call) if not (len(c.args) == 1 and isinstance(c.args[0], vy_ast.Dict)) ] - node_list.extend(filtered_call_nodes) + node_list.extend(filtered_call_nodes) # type: ignore for node in node_list: t = node._metadata.get("type")