(self, other: Self)
| 478 | return Size(abs(src_norm - dest_norm), Unit.B, self.sector_size) |
| 479 | |
| 480 | def __add__(self, other: Self) -> Size: |
| 481 | src_norm = self._normalize() |
| 482 | dest_norm = other._normalize() |
| 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() |
nothing calls this directly
no test coverage detected