(path)
| 322 | return strings_list |
| 323 | |
| 324 | def load_json(path): |
| 325 | with open(path) as f: |
| 326 | data = json.load(f) |
| 327 | return data |
| 328 | |
| 329 | def save_json(file, path): |
| 330 | with open(path, 'w') as f: |
nothing calls this directly
no outgoing calls
no test coverage detected