aboutsummaryrefslogtreecommitdiff
path: root/discord/mixins.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-12-17 00:30:08 -0500
committerRapptz <[email protected]>2015-12-17 00:32:54 -0500
commit51d91c2a82e01275d1c1d888319f1db14dc11791 (patch)
tree80aeac8f9a7d2c9be21e775c9185bec34cb10756 /discord/mixins.py
parentAdd Message.clean_content property to get prettified mentions. (diff)
downloaddiscord.py-51d91c2a82e01275d1c1d888319f1db14dc11791.tar.xz
discord.py-51d91c2a82e01275d1c1d888319f1db14dc11791.zip
Most data classes now support hashing.
Diffstat (limited to 'discord/mixins.py')
-rw-r--r--discord/mixins.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/discord/mixins.py b/discord/mixins.py
index 8a11a7c1..cdbd67d7 100644
--- a/discord/mixins.py
+++ b/discord/mixins.py
@@ -32,3 +32,7 @@ class EqualityComparable:
if isinstance(other, self.__class__):
return other.id != self.id
return True
+
+class Hashable(EqualityComparable):
+ def __hash__(self):
+ return hash(self.id)