interpreter: fix overload for `source_strings_to_files`

pull/9012/head
Dylan Baker 3 years ago
parent d6243e3ebd
commit 35dbf7e6d4
  1. 3
      mesonbuild/interpreter/interpreter.py

@ -2434,6 +2434,9 @@ Try setting b_lundef to false instead.'''.format(self.coredata.options[OptionKey
@T.overload
def source_strings_to_files(self, sources: T.List['mesonlib.FileOrString']) -> T.List['mesonlib.File']: ...
@T.overload
def source_strings_to_files(self, sources: T.List['SourceInputs']) -> T.List['SourceOutputs']: ...
def source_strings_to_files(self, sources: T.List['SourceInputs']) -> T.List['SourceOutputs']:
"""Lower inputs to a list of Targets and Files, replacing any strings.

Loading…
Cancel
Save