Spaces:
Sleeping
Sleeping
Update scrape_3gpp.py
Browse files- scrape_3gpp.py +1 -1
scrape_3gpp.py
CHANGED
@@ -56,7 +56,7 @@ def extract_statuses(url):
|
|
56 |
|
57 |
if 'withdrawn' in unique_statuses:
|
58 |
unique_statuses.remove('withdrawn')
|
59 |
-
return unique_statuses
|
60 |
else:
|
61 |
print(f"'TDoc Status' column not found in {file_name}")
|
62 |
return []
|
|
|
56 |
|
57 |
if 'withdrawn' in unique_statuses:
|
58 |
unique_statuses.remove('withdrawn')
|
59 |
+
return gr.update(choices=unique_statuses, value=unique_statuses)
|
60 |
else:
|
61 |
print(f"'TDoc Status' column not found in {file_name}")
|
62 |
return []
|