Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|