Skip to content

Commit

Permalink
Fix excute call
Browse files Browse the repository at this point in the history
  • Loading branch information
nwatson22 committed Mar 19, 2024
1 parent 51bfac7 commit f50dac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def main() -> None:
raise AssertionError(f'Unimplemented command: {args.command}')

execute = globals()[executor_name]
execute(**vars(args))
execute(args)


# Command implementation
Expand Down

0 comments on commit f50dac4

Please sign in to comment.