(file_paths)
| 89 | return 1 |
| 90 | |
| 91 | def _delete_corrupted_cached_items(file_paths): |
| 92 | from joblib import Parallel, delayed |
| 93 | results = Parallel(n_jobs=-1)(delayed(safe_corrupted_get)(file_path) for file_path in file_paths) |
| 94 | return results |
| 95 | |
| 96 | def _remove(cache_path): |
| 97 | if os.path.exists(cache_path): |
no outgoing calls
no test coverage detected