Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ import pandas as pd
|
|
7 |
import io
|
8 |
|
9 |
def list_available_datasets(query: str):
|
10 |
-
all_dsets = list_datasets(
|
11 |
matches = [ds for ds in all_dsets if query.lower() in ds.lower()]
|
12 |
return matches[:50]
|
13 |
|
|
|
7 |
import io
|
8 |
|
9 |
def list_available_datasets(query: str):
|
10 |
+
all_dsets = list_datasets()
|
11 |
matches = [ds for ds in all_dsets if query.lower() in ds.lower()]
|
12 |
return matches[:50]
|
13 |
|