(self, other: Self)
| 473 | return int(self.value * self.unit.value) |
| 474 | |
| 475 | def __sub__(self, other: Self) -> Size: |
| 476 | src_norm = self._normalize() |
| 477 | dest_norm = other._normalize() |
| 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() |
nothing calls this directly
no test coverage detected