(cls, partname: PackURI, content_type: str, blob: bytes, package: Package)
| 228 | |
| 229 | @classmethod |
| 230 | def load(cls, partname: PackURI, content_type: str, blob: bytes, package: Package): |
| 231 | element = parse_xml(blob) |
| 232 | return cls(partname, content_type, element, package) |
| 233 | |
| 234 | @property |
| 235 | def part(self): |
nothing calls this directly
no test coverage detected