Skip to content

Commit 06ac04a

Browse files
author
Val Brodsky
committed
Fix mypy
1 parent 9f655db commit 06ac04a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/schema/identifiables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __len__(self):
2929
def __repr__(self) -> str:
3030
return f"{self.__class__.__name__}({self._iterable})"
3131

32-
def __eq__(self, other: 'Identifiables') -> bool:
32+
def __eq__(self, other: object) -> bool:
3333
if not isinstance(other, Identifiables):
3434
return False
3535
return self._iterable == other._iterable and self._id_type == other._id_type

0 commit comments

Comments
 (0)