(cls, data: ReadBuffer)
| 3037 | |
| 3038 | @classmethod |
| 3039 | def read(cls, data: ReadBuffer) -> TypedDictType: |
| 3040 | assert read_tag(data) == INSTANCE |
| 3041 | fallback = Instance.read(data) |
| 3042 | ret = TypedDictType( |
| 3043 | read_type_map(data), set(read_str_list(data)), set(read_str_list(data)), fallback |
| 3044 | ) |
| 3045 | assert read_tag(data) == END_TAG |
| 3046 | return ret |
| 3047 | |
| 3048 | @property |
| 3049 | def is_final(self) -> bool: |
nothing calls this directly
no test coverage detected