(file_path)
| 353 | """ |
| 354 | |
| 355 | def create_empty_file(file_path): |
| 356 | with open(file_path, 'w') as _: |
| 357 | pass |
| 358 | |
| 359 | dest_dir = os.path.join(BASE_MODULE_DIR, module_name) |
| 360 | for file_path in file_list: |
no outgoing calls
no test coverage detected
searching dependent graphs…