Skip to content

Commit

Permalink
Add missing type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
petere committed Dec 25, 2023
1 parent 059b9e0 commit 48eeb99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/cmake/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def postprocess(self, output_target_map: OutputTargetMap, root_src_dir: Path, su
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))
Expand Down

0 comments on commit 48eeb99

Please sign in to comment.