summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/Task.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/pym/_emerge/Task.py b/pym/_emerge/Task.py
index dfb560f6a..31788b576 100644
--- a/pym/_emerge/Task.py
+++ b/pym/_emerge/Task.py
@@ -12,14 +12,10 @@ class Task(SlotObject):
raise NotImplementedError(self)
def __eq__(self, other):
- if self.__class__ is not other.__class__:
- return False
- return self._get_hash_key() == other._get_hash_key()
+ return self._get_hash_key() == other
def __ne__(self, other):
- if self.__class__ is not other.__class__:
- return True
- return self._get_hash_key() != other._get_hash_key()
+ return self._get_hash_key() != other
def __hash__(self):
hash_value = getattr(self, "_hash_value", None)