(self, action)
| 672 | return help_string % params |
| 673 | |
| 674 | def _iter_indented_subactions(self, action): |
| 675 | try: |
| 676 | get_subactions = action._get_subactions |
| 677 | except AttributeError: |
| 678 | pass |
| 679 | else: |
| 680 | self._indent() |
| 681 | yield from get_subactions() |
| 682 | self._dedent() |
| 683 | |
| 684 | def _split_lines(self, text, width): |
| 685 | text = self._whitespace_matcher.sub(' ', text).strip() |
no test coverage detected