Format request file
Browse files- src/submission/submit.py +6 -2
src/submission/submit.py
CHANGED
@@ -106,8 +106,12 @@ def add_new_eval(
|
|
106 |
if os.path.exists(out_path):
|
107 |
os.remove(out_path)
|
108 |
|
109 |
-
with open(out_path,
|
110 |
-
|
|
|
|
|
|
|
|
|
111 |
|
112 |
print("Uploading evaluation file...")
|
113 |
API.upload_file(
|
|
|
106 |
if os.path.exists(out_path):
|
107 |
os.remove(out_path)
|
108 |
|
109 |
+
with open(out_path, 'w') as f:
|
110 |
+
json.dump(
|
111 |
+
eval_entry,
|
112 |
+
f,
|
113 |
+
indent=4,
|
114 |
+
)
|
115 |
|
116 |
print("Uploading evaluation file...")
|
117 |
API.upload_file(
|