(properties: ConfigParser, group: str)
| 55 | return read_properties_file(device_file_path) |
| 56 | |
| 57 | def has_group(properties: ConfigParser, group: str): |
| 58 | return group in properties.sections() |
| 59 | |
| 60 | def get_property_or_exit(properties: ConfigParser, group: str, key: str): |
| 61 | if group not in properties.sections(): |
no outgoing calls
no test coverage detected