From 7e2c016eaa795a12de0255bb9d4b7e318768d75d Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 10 Jan 2017 04:34:24 -0500 Subject: [PATCH] Remove extraneous unneeded hash calls. --- discord/mixins.py | 2 +- discord/user.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/mixins.py b/discord/mixins.py index 0ed579454..a0cf04802 100644 --- a/discord/mixins.py +++ b/discord/mixins.py @@ -39,4 +39,4 @@ class Hashable(EqualityComparable): __slots__ = () def __hash__(self): - return hash(self.id) + return self.id >> 22 diff --git a/discord/user.py b/discord/user.py index c3c0d9c21..bbc6d1cc3 100644 --- a/discord/user.py +++ b/discord/user.py @@ -81,7 +81,7 @@ class User(discord.abc.Messageable): return not self.__eq__(other) def __hash__(self): - return hash(self.id) + return self.id >> 22 def __repr__(self): return ''.format(self)