Skip to content

Commit fb6709c

Browse files
committed
remove AcessControllable from being inherited
1 parent 985b727 commit fb6709c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

synapseclient/models/submission.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
skip_async_to_sync,
1212
wrap_async_generator_to_sync_generator,
1313
)
14-
from synapseclient.models.mixins.access_control import AccessControllable
1514

1615

1716
class SubmissionSynchronousProtocol(Protocol):
@@ -285,10 +284,7 @@ def get_submission_count(
285284

286285
@dataclass
287286
@async_to_sync
288-
class Submission(
289-
SubmissionSynchronousProtocol,
290-
AccessControllable,
291-
):
287+
class Submission(SubmissionSynchronousProtocol):
292288
"""A `Submission` object represents a Synapse Submission, which is created when a user
293289
submits an entity to an evaluation queue.
294290
<https://rest-docs.synapse.org/rest/org/sagebionetworks/evaluation/model/Submission.html>

0 commit comments

Comments
 (0)