Override of `lxml` _Element.xpath() method. Provides standard Open XML namespace mapping (`nsmap`) in centralized location.
(self, xpath_str: str)
| 685 | return serialize_for_reading(self) |
| 686 | |
| 687 | def xpath(self, xpath_str: str) -> Any: # pyright: ignore[reportIncompatibleMethodOverride] |
| 688 | """Override of `lxml` _Element.xpath() method. |
| 689 | |
| 690 | Provides standard Open XML namespace mapping (`nsmap`) in centralized location. |
| 691 | """ |
| 692 | return super().xpath(xpath_str, namespaces=nsmap) |
| 693 | |
| 694 | @property |
| 695 | def _nsptag(self) -> str: |
no outgoing calls