Return a new ` ` element.
(cls)
| 138 | |
| 139 | @classmethod |
| 140 | def new(cls) -> CT_Relationships: |
| 141 | """Return a new `<Relationships>` element.""" |
| 142 | return cast(CT_Relationships, parse_xml(f'<Relationships xmlns="{nsmap["pr"]}"/>')) |
| 143 | |
| 144 | @property |
| 145 | def xml_file_bytes(self) -> bytes: |
nothing calls this directly
no test coverage detected