Skip to content

Commit 492eeea

Browse files
committed
Comment out debug statement
1 parent 62d8fa2 commit 492eeea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

yarnrunner_python/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def __jump_to(self, instruction):
125125
# print(f"Jump from {self._program_counter} ", end='')
126126
self._program_counter = self.__find_label(
127127
instruction.operands[0].string_value)
128-
print(f"to {self._program_counter}")
128+
# print(f"to {self._program_counter}")
129129

130130
def __jump(self, _instruction):
131131
if len(self._vm_data_stack) < 1 or type(self._vm_data_stack[0]) != str:

0 commit comments

Comments
 (0)