(file_paths)
| 103 | def _put(result, cache_path): |
| 104 | write_json(result, cache_path) |
| 105 | def _delete_items(file_paths): |
| 106 | from joblib import Parallel, delayed |
| 107 | Parallel(n_jobs=-1)(delayed(_remove)(file_path) for file_path in file_paths) |
| 108 | |
| 109 | def get_files_without_json_extension(directory_path): |
| 110 | # Get a list of all files in the directory |
no outgoing calls
no test coverage detected