yulongchen commited on
Commit
95d7c79
·
1 Parent(s): a08315f

Add system

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -138,7 +138,7 @@ def run_model():
138
  current = {}
139
  else:
140
  current = {}
141
- current[str(step_id)] += f": {msg}"
142
  with open(log_file_path, "w") as f:
143
  json.dump(current, f, indent=2)
144
 
 
138
  current = {}
139
  else:
140
  current = {}
141
+ current[str(step_id)] = f"{msg}"
142
  with open(log_file_path, "w") as f:
143
  json.dump(current, f, indent=2)
144