Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed May 18, 2023
1 parent eff8438 commit 035a91b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/parser/features/decorators/test_pure.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ def bar(a: address) -> uint256:
"""
),
StateAccessViolation,
)
)
2 changes: 1 addition & 1 deletion vyper/semantics/analysis/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 035a91b

Please sign in to comment.