(self, other)
| 43 | return self.priority > other.priority |
| 44 | |
| 45 | def __le__(self, other): |
| 46 | return self.priority <= other.priority |
| 47 | |
| 48 | def __ge__(self, other): |
| 49 | return self.priority >= other.priority |
nothing calls this directly
no outgoing calls
no test coverage detected