You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypeError: Object of type 'TopoOptions' is not JSON serializablec:\programdata\miniconda3\lib\json\encoder.py in default(self, o)
178 """
179 raise TypeError("Object of type '%s' is not JSON serializable" %
--> 180 o.__class__.__name__)
181
182 def encode(self, o):
TypeError: Object of type 'TopoOptions' is not JSON serializable
This is because tj['options'] is a class and not a dict.
The text was updated successfully, but these errors were encountered:
Currently when doing:
Results in:
This is because
tj['options']
is aclass
and not adict
.The text was updated successfully, but these errors were encountered: