(self)
| 2724 | return formatter.format_help() |
| 2725 | |
| 2726 | def _get_formatter(self): |
| 2727 | formatter = self.formatter_class(prog=self.prog) |
| 2728 | formatter._set_color(self.color) |
| 2729 | return formatter |
| 2730 | |
| 2731 | def _get_validation_formatter(self): |
| 2732 | # Return cached formatter for read-only validation operations |
no test coverage detected