Override to add a newline.
(self)
| 876 | return self.formatter_class(prog=self.prog, file=self._thread_locals.current_output_file) |
| 877 | |
| 878 | def format_help(self) -> str: |
| 879 | """Override to add a newline.""" |
| 880 | return super().format_help() + "\n" |
| 881 | |
| 882 | def _get_nargs_pattern(self, action: argparse.Action) -> str: |
| 883 | """Override to support nargs ranges.""" |
no outgoing calls