Return a newly created settings part, containing a default `w:settings` element tree.
(cls, package: Package)
| 27 | |
| 28 | @classmethod |
| 29 | def default(cls, package: Package): |
| 30 | """Return a newly created settings part, containing a default `w:settings` element tree.""" |
| 31 | partname = PackURI("/word/settings.xml") |
| 32 | content_type = CT.WML_SETTINGS |
| 33 | element = cast("CT_Settings", parse_xml(cls._default_settings_xml())) |
| 34 | return cls(partname, content_type, element, package) |
| 35 | |
| 36 | @property |
| 37 | def settings(self) -> Settings: |
nothing calls this directly
no test coverage detected