WIP memory editor

This commit is contained in:
2024-11-23 21:36:50 +01:00
parent dbc0068a82
commit 2c820f6ead
15 changed files with 467 additions and 37 deletions

View File

@@ -32,9 +32,9 @@ class RepeatEntry(Entry):
self.script = script
self.timeout = timeout
self.limit = limit
self.stdout: str = "",
self.stderr: str = "",
self.exit_code: Optional[int] = None,
self.stdout: str = ""
self.stderr: str = ""
self.exit_code: Optional[int] = None
self.timed_out: bool = False
def update(self) -> None: