From d655f1ea1bfb625c1389f6fd496e533e13b3712a Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Fri, 24 Jul 2026 08:48:16 -0700 Subject: [PATCH] updated TaskSatus enum --- synapseclient/models/curation.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/synapseclient/models/curation.py b/synapseclient/models/curation.py index a38c78229..bcb507abb 100644 --- a/synapseclient/models/curation.py +++ b/synapseclient/models/curation.py @@ -84,6 +84,12 @@ class TaskState(str, Enum): IN_PROGRESS = "IN_PROGRESS" """The assignee has actively started the task.""" + EXECUTING = "EXECUTING" + """An automated execution (async job) is currently running for this task.""" + + IN_REVIEW = "IN_REVIEW" + """The automated execution completed successfully and the results are pending human review.""" + COMPLETED = "COMPLETED" """The task has been completed and verified."""