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 8510672 commit 727e302Copy full SHA for 727e302
docs/tutorials/python/tutorial_scripts/submission_organizer.py
@@ -10,7 +10,7 @@
10
"""
11
12
from synapseclient import Synapse
13
-from synapseclient.models import SubmissionBundle, SubmissionStatus
+from synapseclient.models import Submission, SubmissionBundle, SubmissionStatus
14
15
syn = Synapse()
16
syn.login()
@@ -156,7 +156,7 @@
156
157
# Update to allow cancellation (organizer decision)
158
status.can_cancel = True
159
- status.status = "CANCELLED"
+ status.status = "CLOSED"
160
status.submission_annotations.update(
161
{
162
"cancellation_reason": ["User requested cancellation"],
0 commit comments