(self)
| 250 | return cls.from_dict(json.loads(text)) |
| 251 | |
| 252 | def __repr__(self): |
| 253 | return str(self.to_json_string()) |
| 254 | |
| 255 | def to_dict(self): |
| 256 | """Serializes this instance to a Python dictionary.""" |
nothing calls this directly
no test coverage detected