(self, other)
| 56 | return False |
| 57 | |
| 58 | def __eq__(self, other): |
| 59 | return isinstance(other, self.__class__) |
| 60 | |
| 61 | def __ne__(self, other): |
| 62 | return not isinstance(other, self.__class__) |
nothing calls this directly
no outgoing calls
no test coverage detected