diff --git a/skyvern/forge/sdk/models.py b/skyvern/forge/sdk/models.py index 4d17a93c..46c1c8fe 100644 --- a/skyvern/forge/sdk/models.py +++ b/skyvern/forge/sdk/models.py @@ -36,7 +36,7 @@ def cant_have_output(self) -> bool: return self in status_cant_have_output def is_terminal(self) -> bool: - status_is_terminal = {StepStatus.failed, StepStatus.completed} + status_is_terminal = {StepStatus.failed, StepStatus.completed, StepStatus.canceled} return self in status_is_terminal