wannaphong commited on
Commit
2dbe598
·
verified ·
1 Parent(s): da1ca5a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ def save_data(name):
43
  }
44
  with scheduler.lock:
45
  with dataset_file.open("a") as f:
46
- f.write(json.dumps(data) + "\n")
47
  # return "Data saved and will be uploaded to the dataset repository."
48
 
49
 
 
43
  }
44
  with scheduler.lock:
45
  with dataset_file.open("a") as f:
46
+ f.write(json.dumps(data,ensure_ascii=False) + "\n")
47
  # return "Data saved and will be uploaded to the dataset repository."
48
 
49