(file_paths)
| 75 | return None |
| 76 | |
| 77 | def _read_json_files(file_paths): |
| 78 | from joblib import Parallel, delayed |
| 79 | results = Parallel(n_jobs=-1)(delayed(safe_get)(file_path) for file_path in file_paths) |
| 80 | return results |
| 81 | |
| 82 | def safe_corrupted_get(cache_path): |
| 83 | try: |
no outgoing calls
no test coverage detected