(path)
| 91 | |
| 92 | |
| 93 | def load_json_data(path): |
| 94 | with open(path,'r',encoding='utf-8') as json_f: |
| 95 | task_data = json.load(json_f) |
| 96 | return task_data |
| 97 | |
| 98 | def save_json_data(path,data): |
| 99 | with open(path,'w',encoding='utf-8') as json_f: |
nothing calls this directly
no outgoing calls
no test coverage detected