Write data to JSON file
(data, file_path)
| 33 | |
| 34 | |
| 35 | def write_json_file(data, file_path): |
| 36 | """Write data to JSON file""" |
| 37 | with open(file_path, 'w') as f: |
| 38 | json.dump(data, f, indent=2) |
| 39 | |
| 40 | |
| 41 | def write_remap_index(index_map, file_path): |
no outgoing calls
no test coverage detected