Use Final in tkinter (#12545)

This commit is contained in:
Max Muoto
2024-08-17 13:34:16 -07:00
committed by GitHub
parent 9ecd07a669
commit 82da1e19a7
4 changed files with 27 additions and 27 deletions

View File

@@ -1,12 +1,12 @@
from typing import Final
# These are not actually bools. See #4669
NO: bool
YES: bool
TRUE: bool
FALSE: bool
ON: bool
OFF: bool
NO: Final[bool]
YES: Final[bool]
TRUE: Final[bool]
FALSE: Final[bool]
ON: Final[bool]
OFF: Final[bool]
N: Final = "n"
S: Final = "s"
W: Final = "w"