(self, other)
| 22 | ID = None |
| 23 | |
| 24 | def __eq__(self, other): |
| 25 | return type(self) == type(other) and self.ID == other.ID |
| 26 | |
| 27 | def __ne__(self, other): |
| 28 | return type(self) != type(other) or self.ID != other.ID |
nothing calls this directly
no outgoing calls
no test coverage detected