(self, action)
| 1861 | self._mutually_exclusive_groups = container._mutually_exclusive_groups |
| 1862 | |
| 1863 | def _add_action(self, action): |
| 1864 | action = super(_ArgumentGroup, self)._add_action(action) |
| 1865 | self._group_actions.append(action) |
| 1866 | return action |
| 1867 | |
| 1868 | def _remove_action(self, action): |
| 1869 | super(_ArgumentGroup, self)._remove_action(action) |
no test coverage detected