(self, other)
| 40 | return self.priority < other.priority |
| 41 | |
| 42 | def __gt__(self, other): |
| 43 | return self.priority > other.priority |
| 44 | |
| 45 | def __le__(self, other): |
| 46 | return self.priority <= other.priority |
nothing calls this directly
no outgoing calls
no test coverage detected