Commit
·
39ac175
1
Parent(s):
8ec3a0b
Refactor JSON file retrieval in refresh_submissions to correctly list file names
Browse files- gradio_interface.py +1 -2
gradio_interface.py
CHANGED
@@ -27,8 +27,7 @@ def refresh_submissions():
|
|
27 |
if not os.path.exists(hub_path):
|
28 |
os.makedirs(hub_path) # empty repo case
|
29 |
print("os.listdir(hub_path):", os.listdir(hub_path))
|
30 |
-
json_files = [f.split("/") for f in glob.glob(
|
31 |
-
hub_path, "**/*.json")[-1], recursive=True) if f.endswith('.json')]
|
32 |
print("Downloaded submissions: ", json_files)
|
33 |
submissions = []
|
34 |
for file in json_files:
|
|
|
27 |
if not os.path.exists(hub_path):
|
28 |
os.makedirs(hub_path) # empty repo case
|
29 |
print("os.listdir(hub_path):", os.listdir(hub_path))
|
30 |
+
json_files = [f.split("/")[-1] for f in glob.glob(hub_path + "/**/*.json", recursive = True) if f.endswith('.json')]
|
|
|
31 |
print("Downloaded submissions: ", json_files)
|
32 |
submissions = []
|
33 |
for file in json_files:
|