diff --git a/zigpy/quirks/v2/__init__.py b/zigpy/quirks/v2/__init__.py index 6cff3ec20..a4324be97 100644 --- a/zigpy/quirks/v2/__init__.py +++ b/zigpy/quirks/v2/__init__.py @@ -462,7 +462,7 @@ def __eq__(self, other: object) -> bool: """Return whether this object is equal to another object.""" if not isinstance(other, QuirksV2RegistryEntry): return False - return self._cached_hash == other._cached_hash + return self.__hash__() == other.__hash__() @attrs.define