(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 |
| 29 | |
| 30 | def __hash__(self): |
| 31 | return id(type(self)) + self.ID |
nothing calls this directly
no outgoing calls
no test coverage detected