Skip to content

Commit 4ca53e0

Browse files
committed
remove compare=false for some attributes. update sync unit tests
1 parent 480d5de commit 4ca53e0

File tree

2 files changed

+596
-3
lines changed

2 files changed

+596
-3
lines changed

synapseclient/models/submission_status.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ class SubmissionStatus(
359359
List[datetime],
360360
],
361361
]
362-
] = field(default_factory=dict, compare=False)
362+
] = field(default_factory=dict)
363363
"""Primary container object for Annotations on a Synapse object."""
364364

365365
submission_annotations: Optional[
@@ -374,10 +374,10 @@ class SubmissionStatus(
374374
List[datetime],
375375
],
376376
]
377-
] = field(default_factory=dict, compare=False)
377+
] = field(default_factory=dict)
378378
"""Annotations are additional key-value pair metadata that are associated with an object."""
379379

380-
private_status_annotations: Optional[bool] = field(default=True, compare=False)
380+
private_status_annotations: Optional[bool] = field(default=True)
381381
"""Indicates whether the submission status annotations (NOT to be confused with submission annotations) are private (True) or public (False). Default is True."""
382382

383383
entity_id: Optional[str] = None

0 commit comments

Comments
 (0)