(obj: BaseOxmlElement)
| 608 | group.""" |
| 609 | |
| 610 | def _remove_choice_group(obj: BaseOxmlElement): |
| 611 | for tagname in self._member_nsptagnames: |
| 612 | obj.remove_all(tagname) |
| 613 | |
| 614 | _remove_choice_group.__doc__ = "Remove the current choice group child element if present." |
| 615 | self._add_to_class(self._remove_choice_group_method_name, _remove_choice_group) |
nothing calls this directly
no test coverage detected