From 0bb1647fd15cc112098daf9961b2e01cb4e9cd23 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Mon, 3 Jul 2023 12:41:39 -0400 Subject: move various bits of type-checking only code to TYPE_CHECKING blocks Mostly detected with flake8-type-checking. Also quote T.cast() first arguments, since those are not affected by future annotations. --- mesonbuild/modules/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/modules/python.py') diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index 1f05f08d4..f6c82e0d6 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -333,7 +333,7 @@ class PythonModule(ExtensionModule): for i in self.installations.values(): if isinstance(i, PythonExternalProgram) and i.run_bytecompile[i.info['version']]: - i = T.cast(PythonExternalProgram, i) + i = T.cast('PythonExternalProgram', i) manifest = f'python-{i.info["version"]}-installed.json' manifest_json = [] for name, f in py_files: -- cgit v1.2.3