Skip to content

Commit

Permalink
remove unneeded enumerate
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Feb 23, 2022
1 parent 2541c25 commit 1b1ec32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/compiler/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def build_layout_output(compiler_data: CompilerData) -> StorageLayout:
def _build_asm(asm_list):
output_string = ""
in_push = 0
for _, node in enumerate(asm_list):
for node in asm_list:

if isinstance(node, list):
output_string += "[ " + _build_asm(node) + "] "
Expand Down

0 comments on commit 1b1ec32

Please sign in to comment.