[stdlib] Add missing Final (#14613)

This commit is contained in:
Semyon Moroz
2025-08-21 12:18:20 +02:00
committed by GitHub
parent 9b5b3ecb0a
commit 9bb8c4f1f9
30 changed files with 197 additions and 187 deletions
+4 -3
View File
@@ -1,7 +1,8 @@
import sys
from typing import Final
if sys.platform == "win32":
ActionText: list[tuple[str, str, str | None]]
UIText: list[tuple[str, str | None]]
ActionText: Final[list[tuple[str, str, str | None]]]
UIText: Final[list[tuple[str, str | None]]]
dirname: str
tables: list[str]
tables: Final[list[str]]