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

11 lines
235 B
Python

import yaml
class YmlWriter:
@staticmethod
def writeYmlFile(file_path : str, obj : dict) -> None:
with open(file_path, 'w') as outfile:
yaml.dump(obj, outfile, default_flow_style=False, sort_keys=False)