Update jsonIO.py
Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
@@ -28,7 +28,7 @@ class JsonIO:
|
||||
def save_json(self, filename, data):
|
||||
"""Atomically saves json file"""
|
||||
with open(filename, encoding="utf-8", mode="w") as f:
|
||||
dump(data, f, indent=4, separators=(",", ": "), ensure_ascii=False)
|
||||
dump(data, f, ensure_ascii=False)
|
||||
return self.is_valid_json(filename)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user