Forum Discussion

MBB's avatar
MBB
Occasional Contributor
3 years ago
Solved

json deserialization

I have a dictionary of named objects that I've serialized.  When I deserialize it in TC, it seems to understand that it's a dictionary and it shows the names as its keys, but the objects don't show u...
  • mattb's avatar
    mattb
    3 years ago

    I wonder if its due to parameter mismatch.

    I think the issue resides in this code block: 

    class Company:
        def __init__(self, number):
            self.number = number


    Does this code work in another IDE, not PyCharm?