diff --git a/coriolisclient/base.py b/coriolisclient/base.py index 22172ef..9604dd4 100644 --- a/coriolisclient/base.py +++ b/coriolisclient/base.py @@ -135,9 +135,6 @@ def get(self): def __eq__(self, other): if not isinstance(other, Resource): return NotImplemented - # two resources of different types are not equal - if not isinstance(other, self.__class__): - return False return self._info == other._info def is_loaded(self):