(self, other)
| 307 | return NotImplemented |
| 308 | |
| 309 | def __le__(self, other): |
| 310 | if isinstance(other, UUID): |
| 311 | return self.int <= other.int |
| 312 | return NotImplemented |
| 313 | |
| 314 | def __ge__(self, other): |
| 315 | if isinstance(other, UUID): |
no test coverage detected