Return a new ` ` element.
(cls)
| 46 | |
| 47 | @classmethod |
| 48 | def new(cls) -> CT_CoreProperties: |
| 49 | """Return a new `<cp:coreProperties>` element.""" |
| 50 | xml = cls._coreProperties_tmpl |
| 51 | coreProperties = cast(CT_CoreProperties, parse_xml(xml)) |
| 52 | return coreProperties |
| 53 | |
| 54 | @property |
| 55 | def author_text(self) -> str: |
nothing calls this directly
no test coverage detected