diff --git a/kombu/async/timer.py b/kombu/async/timer.py index 6843e766..821896a8 100644 --- a/kombu/async/timer.py +++ b/kombu/async/timer.py @@ -81,12 +81,6 @@ class Entry(object): def __lt__(self, other): return id(self) < id(other) - def __eq__(self, other): - return hash(self) == hash(other) - - def __ne__(self, other): - return not self.__eq__(other) - @property def cancelled(self): return self.canceled