Override with customizations for Cmd2HelpFormatter.
(self, **_kwargs: Any)
| 872 | self.exit(2, f"{formatted_message}\n") |
| 873 | |
| 874 | def _get_formatter(self, **_kwargs: Any) -> Cmd2HelpFormatter: |
| 875 | """Override with customizations for Cmd2HelpFormatter.""" |
| 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.""" |
no outgoing calls