mesonlib: Fix return type of PerMachineDefaultable.default_missing()

pull/8809/head
Dylan Baker 4 years ago committed by Xavier Claessens
parent 76768eaf20
commit 7114a9015e
  1. 2
      mesonbuild/mesonlib/universal.py

@ -533,7 +533,7 @@ class PerMachineDefaultable(PerMachine[T.Optional[_T]]):
def __init__(self) -> None: def __init__(self) -> None:
super().__init__(None, None) super().__init__(None, None)
def default_missing(self) -> "PerMachine[T.Optional[_T]]": def default_missing(self) -> "PerMachine[_T]":
"""Default host to build """Default host to build
This allows just specifying nothing in the native case, and just host in the This allows just specifying nothing in the native case, and just host in the

Loading…
Cancel
Save