Skip to content
Snippets Groups Projects
Commit 307b14d5 authored by Hock, Benedikt's avatar Hock, Benedikt
Browse files

fix utf-8 encoding

parent 84927c3a
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ def make_json(dataframes: Dict[str, pd.DataFrame]) -> Dict[str, str]:
dataframe.drop(dropped_columns, axis=1, inplace=True,
errors="ignore")
print(sheet_name)
json_string = dataframe.to_json(orient="index", indent=4)
json_string = dataframe.to_json(orient="index", indent=4, force_ascii=False)
json_files.update({sheet_name: json_string})
return json_files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment