Skip to content

Commit 6411021

Browse files
committed
Revert "Revert Final for vars"
This reverts commit b924e03.
1 parent b924e03 commit 6411021

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

stdlib/urllib/parse.pyi

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ __all__ = [
2828
"SplitResultBytes",
2929
]
3030

31-
uses_relative: list[str]
32-
uses_netloc: list[str]
33-
uses_params: list[str]
34-
non_hierarchical: list[str]
35-
uses_query: list[str]
36-
uses_fragment: list[str]
37-
scheme_chars: str
31+
uses_relative: Final[list[str]]
32+
uses_netloc: Final[list[str]]
33+
uses_params: Final[list[str]]
34+
non_hierarchical: Final[list[str]]
35+
uses_query: Final[list[str]]
36+
uses_fragment: Final[list[str]]
37+
scheme_chars: Final[str]
3838
if sys.version_info < (3, 11):
3939
MAX_CACHE_SIZE: Final[int]
4040

0 commit comments

Comments
 (0)