WIP memory editor
This commit is contained in:
@@ -32,10 +32,10 @@ class SingleEntry(Entry):
|
||||
self.script = script
|
||||
self.timeout = timeout
|
||||
self.limit = limit
|
||||
self.stdout: str = "",
|
||||
self.stderr: str = "",
|
||||
self.stdout: str = ""
|
||||
self.stderr: str = ""
|
||||
self.exit_code: Optional[int] = None
|
||||
self.executed: bool = False,
|
||||
self.executed: bool = False
|
||||
self.timed_out: bool = False
|
||||
|
||||
def reset(self) -> None:
|
||||
@@ -111,4 +111,6 @@ class SingleEntry(Entry):
|
||||
"stdout": self.stdout,
|
||||
"stderr": self.stderr,
|
||||
"exit_code": self.exit_code,
|
||||
"executed": self.executed,
|
||||
"timed_out": self.timed_out
|
||||
}
|
||||
Reference in New Issue
Block a user