modules/gnome: fix some typing issues

That come to light with some of the changes later in this series,
particularly around dependencies.
This commit is contained in:
Dylan Baker 2022-03-10 10:55:58 -08:00 committed by Eli Schwartz
parent bfc4e958b4
commit 764b3bf327
1 changed files with 3 additions and 3 deletions

View File

@ -2062,8 +2062,8 @@ class GnomeModule(ExtensionModule):
ofile.write(package + '\n')
return build.Data([mesonlib.File(True, outdir, fname)], install_dir, install_dir, mesonlib.FileMode(), state.subproject)
def _get_vapi_link_with(self, target: build.CustomTarget) -> T.List[T.Union[build.BuildTarget, build.CustomTarget]]:
link_with: T.List[T.Union[build.BuildTarget, build.CustomTarget]] = []
def _get_vapi_link_with(self, target: build.CustomTarget) -> T.List[T.Union[build.CustomTarget, build.CustomTargetIndex, build.SharedLibrary, build.StaticLibrary]]:
link_with: T.List[T.Union[build.StaticLibrary, build.SharedLibrary, build.CustomTarget, build.CustomTargetIndex]] = []
for dep in target.get_target_dependencies():
if isinstance(dep, build.SharedLibrary):
link_with.append(dep)
@ -2103,7 +2103,7 @@ class GnomeModule(ExtensionModule):
inputs = kwargs['sources']
link_with = []
link_with: T.List[T.Union[build.SharedLibrary, build.StaticLibrary, build.CustomTarget, build.CustomTargetIndex]] = []
for i in inputs:
if isinstance(i, str):
cmd.append(os.path.join(source_dir, i))