(self, action)
| 2061 | return action |
| 2062 | |
| 2063 | def _add_action(self, action): |
| 2064 | if action.option_strings: |
| 2065 | self._optionals._add_action(action) |
| 2066 | else: |
| 2067 | self._positionals._add_action(action) |
| 2068 | return action |
| 2069 | |
| 2070 | def _get_optional_actions(self): |
| 2071 | return [action |
nothing calls this directly
no test coverage detected