From f4ff5587d3f27a84bee8f40ba34811af00b3bef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20H=C3=B6gstedt?= <marin.hogstedt@hotmail.com> Date: Tue, 11 Jun 2024 13:16:13 +0200 Subject: [PATCH] last fix --- src/simudator/core/processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simudator/core/processor.py b/src/simudator/core/processor.py index 3c88aa9..876b627 100644 --- a/src/simudator/core/processor.py +++ b/src/simudator/core/processor.py @@ -37,7 +37,7 @@ class Processor: self.line_seperator = "-" self.is_stopped = False self.new_instruction = False - self.current_instruction: str = "" + self.current_instructions: list[str] = [] # TODO: keeping track of what pieces of info not to show # show not be done at the processor level. # Maybe implemenet a 'get_pretty_print_state' at module -- GitLab