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 9f655db commit 06ac04aCopy full SHA for 06ac04a
labelbox/schema/identifiables.py
@@ -29,7 +29,7 @@ def __len__(self):
29
def __repr__(self) -> str:
30
return f"{self.__class__.__name__}({self._iterable})"
31
32
- def __eq__(self, other: 'Identifiables') -> bool:
+ def __eq__(self, other: object) -> bool:
33
if not isinstance(other, Identifiables):
34
return False
35
return self._iterable == other._iterable and self._id_type == other._id_type
0 commit comments