(self, other)
| 37 | raise NotImplementedError |
| 38 | |
| 39 | def __lt__(self, other): |
| 40 | return self.priority < other.priority |
| 41 | |
| 42 | def __gt__(self, other): |
| 43 | return self.priority > other.priority |
nothing calls this directly
no outgoing calls
no test coverage detected