(field_name)
| 56 | config = json.load(fin); |
| 57 | |
| 58 | def convert_to_abs_path(field_name): |
| 59 | field = config[field_name]; |
| 60 | if isinstance(field, str): |
| 61 | config[field_name] = str(find_file(field, config_dir)); |
| 62 | |
| 63 | if "wire_network" in config: |
| 64 | convert_to_abs_path("wire_network"); |
no test coverage detected