(self, action)
| 1784 | return action |
| 1785 | |
| 1786 | def _remove_action(self, action): |
| 1787 | super(_ArgumentGroup, self)._remove_action(action) |
| 1788 | self._group_actions.remove(action) |
| 1789 | |
| 1790 | def add_argument_group(self, *args, **kwargs): |
| 1791 | raise ValueError('argument groups cannot be nested') |
no test coverage detected