brunneis commited on
Commit
9d43bec
·
unverified ·
1 Parent(s): 4c0c41f

Format request file

Browse files
Files changed (1) hide show
  1. 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, "w") as f:
110
- f.write(json.dumps(eval_entry))
 
 
 
 
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(