cmake/interperter: Add missing type annotation

Which mypy is suddenly complaining about.
This commit is contained in:
Dylan Baker 2023-12-21 10:21:17 -08:00
parent 191449f608
commit 8bc8f93436
1 changed files with 1 additions and 1 deletions

View File

@ -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))