Remove extraneous unneeded hash calls.

This commit is contained in:
Rapptz
2017-01-10 04:34:24 -05:00
parent 94448d3972
commit 7e2c016eaa
2 changed files with 2 additions and 2 deletions

View File

@ -39,4 +39,4 @@ class Hashable(EqualityComparable):
__slots__ = ()
def __hash__(self):
return hash(self.id)
return self.id >> 22