(dict_data, file_path)
| 7 | |
| 8 | |
| 9 | def to_jsonl(dict_data, file_path): |
| 10 | with open(file_path, 'a') as file: |
| 11 | json_line = json.dumps(dict_data) |
| 12 | file.write(json_line + os.linesep) |
| 13 | |
| 14 | |
| 15 | class PropagatingThread(Thread): |
nothing calls this directly
no outgoing calls
no test coverage detected