(cls, data: ReadBuffer)
| 1585 | |
| 1586 | @classmethod |
| 1587 | def read(cls, data: ReadBuffer) -> ExtraAttrs: |
| 1588 | ret = ExtraAttrs(read_type_map(data), set(read_str_list(data)), read_str_opt(data)) |
| 1589 | assert read_tag(data) == END_TAG |
| 1590 | return ret |
| 1591 | |
| 1592 | |
| 1593 | class Instance(ProperType): |
nothing calls this directly
no test coverage detected