(obj: BaseOxmlElement, child: BaseOxmlElement)
| 317 | """Add an ``_insert_x()`` method to the element class for this child element.""" |
| 318 | |
| 319 | def _insert_child(obj: BaseOxmlElement, child: BaseOxmlElement): |
| 320 | obj.insert_element_before(child, *self._successors) |
| 321 | return child |
| 322 | |
| 323 | _insert_child.__doc__ = ( |
| 324 | "Return the passed ``<%s>`` element after inserting it as a chil" |
nothing calls this directly
no test coverage detected