Skip to content

Commit 154d035

Browse files
authored
Merge pull request #186 from kyle-seongwoo-jun/master
[Windows Terminal] Don't escape non-ASCII characters
2 parents 9a4fe5f + 84ba4a7 commit 154d035

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pokemonterminal/terminal/adapters/windowsterminal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def set_background_image(path: str):
3131
# write to file
3232
# it lost orignal indent, comment, ...
3333
json_file.seek(0)
34-
json.dump(data, json_file, indent=4)
34+
json.dump(data, json_file, indent=4, ensure_ascii=False)
3535
json_file.truncate()
3636

3737
def comment_remover(text: str) -> str:

0 commit comments

Comments
 (0)