Can save lists as json

merge-requests/30/head
Bob Mottram 2024-11-18 12:58:18 +00:00
parent 82172e0949
commit 5504c5b33e
1 changed files with 3 additions and 2 deletions

View File

@ -1213,8 +1213,9 @@ def save_json(json_object: {}, filename: str) -> bool:
"""Saves json to a file
"""
if not isinstance(json_object, dict):
print('EX: save_json object is not json ' + str(json_object))
return False
if not isinstance(json_object, list):
print('EX: save_json object is not json ' + str(json_object))
return False
tries = 1
while tries <= 5: