(dic, file)
| 346 | return new_inters |
| 347 | |
| 348 | def write_json_file(dic, file): |
| 349 | print('Writing json file: ',file) |
| 350 | with open(file, 'w') as fp: |
| 351 | json.dump(dic, fp, indent=4) |
| 352 | |
| 353 | def write_remap_index(unit2index, file): |
| 354 | print('Writing remap file: ',file) |
nothing calls this directly
no outgoing calls
no test coverage detected