summaryrefslogtreecommitdiff
path: root/mesonbuild/mintro.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r--mesonbuild/mintro.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py
index 1d1e858ac..063c5cdd6 100644
--- a/mesonbuild/mintro.py
+++ b/mesonbuild/mintro.py
@@ -429,7 +429,7 @@ def list_deps(coredata: cdata.CoreData, backend: backends.Backend) -> T.List[T.D
d = holder.held_object
if isinstance(d, Dependency) and d.found():
if d.name in result:
- T.cast(T.List[str], result[d.name]['meson_variables']).append(varname)
+ T.cast('T.List[str]', result[d.name]['meson_variables']).append(varname)
else:
result[d.name] = _create_result(d, varname)