Skip to content

Commit f27bd63

Browse files
author
Alan Christie
committed
fix: LaunchResult now has default values
1 parent bd578cc commit f27bd63

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

workflow/workflow_abc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ class LaunchResult:
1414
"""Results returned from methods in the InstanceLauncher."""
1515

1616
error: int
17-
error_msg: str | None
18-
instance_id: str | None
19-
task_id: str | None
20-
command: str | None
17+
error_msg: str | None = None
18+
instance_id: str | None = None
19+
task_id: str | None = None
20+
command: str | None = None
2121

2222

2323
class InstanceLauncher(ABC):

0 commit comments

Comments
 (0)