Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ def add_new_eval(
|
|
36 |
submission_repo.git_pull()
|
37 |
filename = datetime.datetime.now().strftime("%Y%m%d_%H%M%S")
|
38 |
now = datetime.datetime.now()
|
39 |
-
with open(f'SUBMISSION_NAME/{filename}.zip','wb') as f:
|
40 |
f.write(input_file)
|
41 |
# shutil.copyfile(CSV_DIR, os.path.join(SUBMISSION_NAME, f"{input_file}"))
|
42 |
|
|
|
36 |
submission_repo.git_pull()
|
37 |
filename = datetime.datetime.now().strftime("%Y%m%d_%H%M%S")
|
38 |
now = datetime.datetime.now()
|
39 |
+
with open(f'{SUBMISSION_NAME}/{filename}.zip','wb') as f:
|
40 |
f.write(input_file)
|
41 |
# shutil.copyfile(CSV_DIR, os.path.join(SUBMISSION_NAME, f"{input_file}"))
|
42 |
|