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

@@ -106,8 +106,8 @@ EXCEPTION: Final = 8
READABLE: Final = 2
WRITABLE: Final = 4
TCL_VERSION: str
TK_VERSION: str
TCL_VERSION: Final[str]
TK_VERSION: Final[str]
@final
class TkttType: