bytes XML serialization of this part.
(self)
| 401 | |
| 402 | @property |
| 403 | def blob(self) -> bytes: # pyright: ignore[reportIncompatibleMethodOverride] |
| 404 | """bytes XML serialization of this part.""" |
| 405 | return serialize_part_xml(self._element) |
| 406 | |
| 407 | # -- XmlPart cannot set its blob, which is why pyright complains -- |
| 408 |
nothing calls this directly
no test coverage detected