(result, cache_path)
| 101 | pass |
| 102 | # used by decorators |
| 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) |
nothing calls this directly
no test coverage detected