Browse Source

Fix comparisons between two Object with types

pull/9747/head
Rapptz 1 year ago
parent
commit
56916f9241
  1. 2
      discord/object.py

2
discord/object.py

@ -102,7 +102,7 @@ class Object(Hashable):
return f'<Object id={self.id!r} type={self.type!r}>'
def __eq__(self, other: object) -> bool:
if isinstance(other, self.type):
if isinstance(other, (self.type, self.__class__)):
return self.id == other.id
return NotImplemented

Loading…
Cancel
Save