gh-133346: make _colorize.Argparse kw-only constructible (#140620)

Other themes are kw-only constructible.
This commit is contained in:
Bénédikt Tran 2025-10-26 12:33:57 +01:00 committed by GitHub
parent 00026d19c2
commit 387ac2d2f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -155,7 +155,7 @@ def __iter__(self) -> Iterator[str]:
return iter(self.__dataclass_fields__)
@dataclass(frozen=True)
@dataclass(frozen=True, kw_only=True)
class Argparse(ThemeSection):
usage: str = ANSIColors.BOLD_BLUE
prog: str = ANSIColors.BOLD_MAGENTA