(self, data: WriteBuffer)
| 1511 | return DeletedType(data["source"]) |
| 1512 | |
| 1513 | def write(self, data: WriteBuffer) -> None: |
| 1514 | write_tag(data, DELETED_TYPE) |
| 1515 | write_str_opt(data, self.source) |
| 1516 | write_tag(data, END_TAG) |
| 1517 | |
| 1518 | @classmethod |
| 1519 | def read(cls, data: ReadBuffer) -> DeletedType: |
nothing calls this directly
no test coverage detected