(device_id: str)
| 34 | print("\t--dev developer options (limit to 4MB partition table)") |
| 35 | |
| 36 | def get_properties_file_path(device_id: str): |
| 37 | return os.path.join(DEVICES_DIRECTORY, device_id, "device.properties") |
| 38 | |
| 39 | def read_file(path: str): |
| 40 | with open(path, "r") as file: |
no test coverage detected