updating data

This commit is contained in:
Frank Knoll
2024-04-24 15:19:07 +02:00
parent 3d2e0405a3
commit fed764afd3
9545 changed files with 17477 additions and 17501 deletions

View File

@@ -34,7 +34,7 @@ class IOUtils:
def saveDictAsJson(dict, file):
IOUtils.ensurePath(file)
with open(file, 'w') as outfile:
json.dump(dict, outfile, ignore_nan=True)
json.dump(dict, outfile, ignore_nan=True, sort_keys=True)
@staticmethod
def ensurePath(file):