diff --git a/manim_voiceover/helper.py b/manim_voiceover/helper.py index 81721bb..ef4c607 100644 --- a/manim_voiceover/helper.py +++ b/manim_voiceover/helper.py @@ -115,7 +115,7 @@ def append_to_json_file(json_file: str, data: dict): json_data.append(data) with open(json_file, "w") as f: - json.dump(json_data, f, indent=2) + json.dump(json_data, f, indent=2, ensure_ascii=False) return