We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b0a7a8 commit 84f8786Copy full SHA for 84f8786
mesonbuild/dependencies/python.py
@@ -19,7 +19,7 @@
19
from ..options import OptionKey
20
21
if T.TYPE_CHECKING:
22
- from typing_extensions import TypedDict
+ from typing_extensions import Final, TypedDict
23
24
from .factory import DependencyGenerator
25
from ..environment import Environment
@@ -78,7 +78,7 @@ class PythonBuildConfig:
78
"""PEP 739 build-details.json config file."""
79
80
"""Schema version currently implemented."""
81
- IMPLEMENTED_VERSION: T.Final[str] = '1.0'
+ IMPLEMENTED_VERSION: Final[str] = '1.0'
82
"""Path keys — may be relative, need to be expanded."""
83
_PATH_KEYS = (
84
'base_interpreter',
0 commit comments