Fix Final literal values in various third-party stubs (#15521)

This commit is contained in:
Brian Schubert
2026-03-15 19:08:37 -07:00
committed by GitHub
parent afee73a18c
commit 61524fab4e
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ _S = TypeVar("_S", bound=Serialisable)
COLOR_INDEX: Final[tuple[str, ...]]
BLACK: Final = "00000000"
WHITE: Final = "00FFFFFF"
BLUE: Final = "00FFFFFF"
BLUE: Final = "000000FF"
aRGB_REGEX: Final[Pattern[str]]
class RGB(Typed[str, _N]):