(self, action)
| 1806 | return action |
| 1807 | |
| 1808 | def _remove_action(self, action): |
| 1809 | self._container._remove_action(action) |
| 1810 | self._group_actions.remove(action) |
| 1811 | |
| 1812 | def add_mutually_exclusive_group(self, **kwargs): |
| 1813 | raise ValueError('mutually exclusive groups cannot be nested') |
nothing calls this directly
no test coverage detected