mesonlib: Fix return type of PerMachineDefaultable.default_missing()

This commit is contained in:
Dylan Baker 2021-03-25 15:03:35 -07:00 committed by Xavier Claessens
parent 76768eaf20
commit 7114a9015e
1 changed files with 1 additions and 1 deletions

View File

@ -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