Browse Source

Use explicit __eq__ call to be consistent with other methods.

pull/2049/head
Rapptz 6 years ago
parent
commit
9248ff306c
  1. 4
      discord/emoji.py

4
discord/emoji.py

@ -94,7 +94,7 @@ class PartialEmoji:
return self.id == other.id
def __ne__(self, other):
return not self == other
return not self.__eq__(other)
def __hash__(self):
return hash((self.id, self.name))
@ -208,7 +208,7 @@ class Emoji:
return isinstance(other, (PartialEmoji, Emoji)) and self.id == other.id
def __ne__(self, other):
return not self == other
return not self.__eq__(other)
def __hash__(self):
return self.id >> 22

Loading…
Cancel
Save