(self, include_unit: bool = True, units: Units = Units.BINARY)
| 448 | return f'{si_value.value}' |
| 449 | |
| 450 | def format_highest(self, include_unit: bool = True, units: Units = Units.BINARY) -> str: |
| 451 | if units == Units.BINARY: |
| 452 | return self.binary_unit_highest(include_unit) |
| 453 | else: |
| 454 | return self.si_unit_highest(include_unit) |
| 455 | |
| 456 | def is_valid_start(self) -> bool: |
| 457 | return self >= Size(1, Unit.MiB, self.sector_size) |
no test coverage detected