(self, data: WriteBuffer)
| 1352 | ) |
| 1353 | |
| 1354 | def write(self, data: WriteBuffer) -> None: |
| 1355 | write_tag(data, ANY_TYPE) |
| 1356 | write_type_opt(data, self.source_any) |
| 1357 | write_int(data, self.type_of_any) |
| 1358 | write_str_opt(data, self.missing_import_name) |
| 1359 | write_tag(data, END_TAG) |
| 1360 | |
| 1361 | @classmethod |
| 1362 | def read(cls, data: ReadBuffer) -> AnyType: |
nothing calls this directly
no test coverage detected