Files
2022-03-09 14:43:09 +01:00

10 lines
220 B
Python

import json
class JsonWriter():
@staticmethod
def writeJsonObject(file_path : str, obj) -> None:
with open(file_path, 'w') as outfile:
json.dump(obj, outfile, ensure_ascii=False, indent=4)