Spaces:
Running
Running
Fix returned variable
Browse files
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
|
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
|