cmake/interperter: Add missing type annotation
Which mypy is suddenly complaining about.
This commit is contained in:
parent
191449f608
commit
8bc8f93436
|
@ -293,7 +293,7 @@ class ConverterTarget:
|
||||||
if i not in self.compile_opts:
|
if i not in self.compile_opts:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
temp = []
|
temp: T.List[str] = []
|
||||||
for j in self.compile_opts[i]:
|
for j in self.compile_opts[i]:
|
||||||
m = ConverterTarget.std_regex.match(j)
|
m = ConverterTarget.std_regex.match(j)
|
||||||
ctgt = output_target_map.generated(Path(j))
|
ctgt = output_target_map.generated(Path(j))
|
||||||
|
|
Loading…
Reference in New Issue