yoloserv/modules/paravision/recognition/tests/utils.py

10 lines
137 B
Python

import json
def is_json_serializable(x):
try:
json.dumps(x)
return True
except TypeError:
return False