Merge commit '1134c81aad049d4357c8f299ffc801218f3d9574' into feature/objectify

This commit is contained in:
Gerald Lonlas
2018-03-03 16:42:37 -08:00
11 changed files with 285 additions and 75 deletions

View File

@@ -67,5 +67,5 @@ def file_dump_json(filename, data) -> None:
:param data: JSON Data to save
:return:
"""
with open(filename, 'w') as file:
json.dump(data, file)
with open(filename, 'w') as fp:
json.dump(data, fp, default=str)