Skip to content

Commit f752736

Browse files
committed
Fix json.dump
1 parent 11d0ec1 commit f752736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsoner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ def _atcoder_config(**ignore) :
8383
outfile_name = infile_name.replace(".yml", ".json")
8484

8585
with open(outfile_name, "w", encoding="utf-8") as f :
86-
json.dump(data, f, "utf-8", ensure_ascii=False, sort_keys=True)
86+
json.dump(data, f, ensure_ascii=False, sort_keys=True)
8787

8888
print("\nSuccessfully output to " + outfile_name)

0 commit comments

Comments
 (0)