Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions stdlib/tkinter/constants.pyi
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from typing import Final

# These are not actually bools. See #4669
NO: Final[bool]
YES: Final[bool]
TRUE: Final[bool]
FALSE: Final[bool]
ON: Final[bool]
OFF: Final[bool]
YES: Final = True
NO: Final = False
TRUE: Final = True
FALSE: Final = False
ON: Final = True
OFF: Final = False
N: Final = "n"
S: Final = "s"
W: Final = "w"
Expand Down