Reads a JSON file at the path.
(path)
| 435 | ########################################################################################### |
| 436 | # private JSON file functions |
| 437 | def __read_json_file(path): |
| 438 | """Reads a JSON file at the path.""" |
| 439 | with open(path, 'r') as f: |
| 440 | return json.load(f) |
| 441 | |
| 442 | |
| 443 | def __write_json_file(path, values): |
no outgoing calls
no test coverage detected
searching dependent graphs…