MCPcopy Index your code
hub / github.com/omkarcloud/botasaurus / _delete_corrupted_cached_items

Function _delete_corrupted_cached_items

botasaurus/cache.py:91–94  ·  view source on GitHub ↗
(file_paths)

Source from the content-addressed store, hash-verified

89 return 1
90
91def _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
96def _remove(cache_path):
97 if os.path.exists(cache_path):

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected