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.
2 parents 28a6bf8 + f0ef877 commit 6072046Copy full SHA for 6072046
packages/core/minos-microservice-aggregate/minos/aggregate/deltas/models.py
@@ -64,7 +64,7 @@ def simplified_name(self) -> str:
64
65
def __lt__(self, other: Any) -> bool:
66
return isinstance(other, type(self)) and (
67
- (self.name == other.name and self.version < other.version) or self.created_at < other.created_at
+ (self.uuid == other.uuid and self.version < other.version) or (self.created_at < other.created_at)
68
)
69
70
def __getitem__(self, item: str) -> Any:
0 commit comments