LTMeyer commited on
Commit
b862fa2
1 Parent(s): 69c2b3b

Fix returned variable

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -70,7 +70,7 @@ def get_dataset_files(dataset_name: str):
70
  dataset_path = get_dataset_path(dataset_name)
71
  fs, _ = fsspec.url_to_fs(dataset_path)
72
  dataset_files = fs.glob(f"{dataset_path}/**/*.hdf5")
73
- return fs, dataset_files
74
 
75
 
76
  @st.cache_data
 
70
  dataset_path = get_dataset_path(dataset_name)
71
  fs, _ = fsspec.url_to_fs(dataset_path)
72
  dataset_files = fs.glob(f"{dataset_path}/**/*.hdf5")
73
+ return dataset_files
74
 
75
 
76
  @st.cache_data