(self)
| 63 | # __hash__ is needed because __eq__ is defined. |
| 64 | # See https://docs.python.org/3/reference/datamodel.html#object.__hash__ |
| 65 | def __hash__(self) -> int: |
| 66 | return hash(computedobject.ComputedObject.freeze(self.getSignature())) |
| 67 | |
| 68 | def __ne__(self, other: Any) -> bool: |
| 69 | return not self.__eq__(other) |