linkers: typing -> T fixup

There was a particularly old MR merged, from before the typing -> T
standardization in meson.
pull/6647/head
Dylan Baker 5 years ago
parent 49ae886620
commit a9cd197c7b
  1. 2
      mesonbuild/linkers.py

@ -666,7 +666,7 @@ class LLVMDynamicLinker(GnuLikeDynamicLinkerMixin, PosixDynamicLinkerMixin, Dyna
_, _, e = mesonlib.Popen_safe(self.exelist + self._apply_prefix('--allow-shlib-undefined'))
self.has_allow_shlib_undefined = not ('unknown argument: --allow-shlib-undefined' in e)
def get_allow_undefined_args(self) -> typing.List[str]:
def get_allow_undefined_args(self) -> T.List[str]:
if self.has_allow_shlib_undefined:
return self._apply_prefix('--allow-shlib-undefined')
return []

Loading…
Cancel
Save