Commit
·
a92924f
1
Parent(s):
c7c831b
Comment out existing submission deletion logic in refresh_submissions function
Browse files- gradio_interface.py +3 -3
gradio_interface.py
CHANGED
@@ -16,9 +16,9 @@ submissions = None # [{"user": u, "task": t, "submitted_time": ts}]
|
|
16 |
|
17 |
def refresh_submissions():
|
18 |
global hub_path, submissions
|
19 |
-
if hub_path and Path(hub_path).exists():
|
20 |
-
|
21 |
-
|
22 |
|
23 |
hub_path = snapshot_download(repo_type="dataset",
|
24 |
repo_id=SUBMISSION_REPO, allow_patterns=['*.json'])
|
|
|
16 |
|
17 |
def refresh_submissions():
|
18 |
global hub_path, submissions
|
19 |
+
# if hub_path and Path(hub_path).exists():
|
20 |
+
# shutil.rmtree(hub_path, ignore_errors=True)
|
21 |
+
# print("Deleted existing submissions")
|
22 |
|
23 |
hub_path = snapshot_download(repo_type="dataset",
|
24 |
repo_id=SUBMISSION_REPO, allow_patterns=['*.json'])
|