cmake/interperter: Add missing type annotation

Which mypy is suddenly complaining about.
pull/12293/head
Dylan Baker 1 year ago
parent 191449f608
commit 8bc8f93436
  1. 2
      mesonbuild/cmake/interpreter.py

@ -293,7 +293,7 @@ class ConverterTarget:
if i not in self.compile_opts:
continue
temp = []
temp: T.List[str] = []
for j in self.compile_opts[i]:
m = ConverterTarget.std_regex.match(j)
ctgt = output_target_map.generated(Path(j))

Loading…
Cancel
Save