Skip to content

Commit

Permalink
fix: Fix store and load calls (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVaultdweller13 authored Jan 3, 2025
1 parent 9c3f61b commit 5c36389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def execute_instruction(self, instruction, bindings: Bindings):
if num_args:
return func(args, bindings) if num_args == 2 else func(args)
else:
return func
return func()

def instruction_add(self, args, bindings):
((_, target),) = args
Expand Down

0 comments on commit 5c36389

Please sign in to comment.