(self, other: Self)
| 506 | return self._normalize() > other._normalize() |
| 507 | |
| 508 | def __ge__(self, other: Self) -> bool: |
| 509 | return self._normalize() >= other._normalize() |
| 510 | |
| 511 | |
| 512 | class BtrfsMountOption(Enum): |
nothing calls this directly
no test coverage detected