Merge pull request #472 from darwintree/main

chore(writer): improve text display(ja etc) in json file
This commit is contained in:
Max Bain
2023-09-10 08:37:39 -06:00
committed by GitHub

View File

@ -402,7 +402,7 @@ class WriteJSON(ResultWriter):
extension: str = "json"
def write_result(self, result: dict, file: TextIO, options: dict):
json.dump(result, file)
json.dump(result, file, ensure_ascii=False)
def get_writer(