We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd578cc commit f27bd63Copy full SHA for f27bd63
workflow/workflow_abc.py
@@ -14,10 +14,10 @@ class LaunchResult:
14
"""Results returned from methods in the InstanceLauncher."""
15
16
error: int
17
- error_msg: str | None
18
- instance_id: str | None
19
- task_id: str | None
20
- command: str | None
+ error_msg: str | None = None
+ instance_id: str | None = None
+ task_id: str | None = None
+ command: str | None = None
21
22
23
class InstanceLauncher(ABC):
0 commit comments