(self, other: Self)
| 483 | return Size(abs(src_norm + dest_norm), Unit.B, self.sector_size) |
| 484 | |
| 485 | def __lt__(self, other: Self) -> bool: |
| 486 | return self._normalize() < other._normalize() |
| 487 | |
| 488 | def __le__(self, other: Self) -> bool: |
| 489 | return self._normalize() <= other._normalize() |
nothing calls this directly
no test coverage detected