(self)
| 2729 | return formatter |
| 2730 | |
| 2731 | def _get_validation_formatter(self): |
| 2732 | # Return cached formatter for read-only validation operations |
| 2733 | # (_expand_help and _format_args). Avoids repeated slow _set_color calls. |
| 2734 | if self._cached_formatter is None: |
| 2735 | self._cached_formatter = self._get_formatter() |
| 2736 | return self._cached_formatter |
| 2737 | |
| 2738 | # ===================== |
| 2739 | # Help-printing methods |
no test coverage detected