(self, partition: PartitionModification)
| 1411 | return self.device.disk.type == PartitionTable.GPT.value |
| 1412 | |
| 1413 | def add_partition(self, partition: PartitionModification) -> None: |
| 1414 | self.partitions.append(partition) |
| 1415 | |
| 1416 | def get_efi_partition(self) -> PartitionModification | None: |
| 1417 | filtered = filter(lambda x: x.is_efi() and x.mountpoint, self.partitions) |
no outgoing calls
no test coverage detected