You seem to know how to create a dictionary, given that's what you're doing with
Just do the same kind of thing for your components, don't create strings.
A string is not a dictionary. That's why you get the error you do (it's referring to objects because that's what dictionaries are called in JSON,which is the format used under the hood).
issue_dict
above. Just do the same kind of thing for your components, don't create strings.
A string is not a dictionary. That's why you get the error you do (it's referring to objects because that's what dictionaries are called in JSON,which is the format used under the hood).