(path)
| 42 | return result |
| 43 | |
| 44 | def read_properties_file(path): |
| 45 | config = configparser.RawConfigParser() |
| 46 | # Don't convert keys to lowercase |
| 47 | config.optionxform = str |
| 48 | config.read(path) |
| 49 | return config |
| 50 | |
| 51 | def read_device_properties(device_id): |
| 52 | device_file_path = get_properties_file_path(device_id) |
no test coverage detected