Skip to content

Commit 84f8786

Browse files
committed
python: Fix typing problem
1 parent 9b0a7a8 commit 84f8786

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mesonbuild/dependencies/python.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from ..options import OptionKey
2020

2121
if T.TYPE_CHECKING:
22-
from typing_extensions import TypedDict
22+
from typing_extensions import Final, TypedDict
2323

2424
from .factory import DependencyGenerator
2525
from ..environment import Environment
@@ -78,7 +78,7 @@ class PythonBuildConfig:
7878
"""PEP 739 build-details.json config file."""
7979

8080
"""Schema version currently implemented."""
81-
IMPLEMENTED_VERSION: T.Final[str] = '1.0'
81+
IMPLEMENTED_VERSION: Final[str] = '1.0'
8282
"""Path keys — may be relative, need to be expanded."""
8383
_PATH_KEYS = (
8484
'base_interpreter',

0 commit comments

Comments
 (0)