File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,9 @@ def save_to_parquet(
354354 else :
355355 # TODO: RUCIO
356356 # TODO: DIRAC
357- raise NotImplementedError ("Caching is not implemented yet for %s" , cache_location )
357+ raise NotImplementedError (
358+ "Caching is not implemented yet for %s" , cache_location
359+ )
358360
359361
360362def load_from_parquet (filename : str , cache_location : str ) -> pd .DataFrame :
@@ -368,7 +370,9 @@ def load_from_parquet(filename: str, cache_location: str) -> pd.DataFrame:
368370 else :
369371 # TODO: RUCIO
370372 # TODO: DIRAC
371- raise NotImplementedError ("Caching is not implemented yet for %s" , cache_location )
373+ raise NotImplementedError (
374+ "Caching is not implemented yet for %s" , cache_location
375+ )
372376
373377
374378def get_cached_files (cache_location : str ) -> list [str ]:
@@ -380,7 +384,9 @@ def get_cached_files(cache_location: str) -> list[str]:
380384 else :
381385 # TODO: RUCIO
382386 # TODO: DIRAC
383- raise NotImplementedError ("Caching is not implemented yet for %s" , cache_location )
387+ raise NotImplementedError (
388+ "Caching is not implemented yet for %s" , cache_location
389+ )
384390
385391 # remove parquet extension and get file name from path
386392 file_list = [c [c .rfind ("/" ) + 1 : - 8 ] for c in file_list ]
You can’t perform that action at this time.
0 commit comments