(data, path, indent=4)
| 48 | return content |
| 49 | |
| 50 | def write_json(data, path, indent=4): |
| 51 | with open(path, 'w', encoding="utf-8") as fp: |
| 52 | json.dump(data, fp, indent=indent) |
| 53 | |
| 54 | |
| 55 | def uniquify_strings(strs): |
no outgoing calls
no test coverage detected