(self, file=None)
| 2808 | return formatter.format_help() |
| 2809 | |
| 2810 | def _get_formatter(self, file=None): |
| 2811 | formatter = self.formatter_class(prog=self.prog) |
| 2812 | formatter._set_color(self.color, file=file) |
| 2813 | return formatter |
| 2814 | |
| 2815 | def _get_validation_formatter(self): |
| 2816 | # Return cached formatter for read-only validation operations |
no test coverage detected