Can't serialize a list that I cobble together in State #3013
-
|
Hi there, I have a list that I'm cobbling together in the State through a series of checkbox selections but it looks like the list is no longer serializable once Here is the gist for what I'm doing: Any guidance would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
@hragbalian The list and dict types are wrapped so that we can detect mutations in them. Try this to get the underlying values: my_list = self.get_value(self.my_list)
print(type(self.my_list))
print(type(my_list)) |
Beta Was this translation helpful? Give feedback.
@hragbalian The list and dict types are wrapped so that we can detect mutations in them. Try this to get the underlying values: