(self, path: Path)
| 159 | return None |
| 160 | |
| 161 | def get_device(self, path: Path) -> BDevice | None: |
| 162 | return self._devices.get(path, None) |
| 163 | |
| 164 | def get_device_by_partition_path(self, partition_path: Path) -> BDevice | None: |
| 165 | partition = self.find_partition(partition_path) |
no outgoing calls
no test coverage detected