mirror of https://gitlab.com/bashrc2/epicyon
Can save lists as json
parent
82172e0949
commit
5504c5b33e
5
utils.py
5
utils.py
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue