backends/base: fix annotation for as_meson_exe_cmdline

It returns (list[str], str)
pull/12393/merge
Dylan Baker 7 months ago committed by Eli Schwartz
parent 065288eac5
commit 9d6191cfb4
  1. 2
      mesonbuild/backend/backends.py

@ -597,7 +597,7 @@ class Backend:
feed: T.Optional[str] = None, feed: T.Optional[str] = None,
force_serialize: bool = False, force_serialize: bool = False,
env: T.Optional[mesonlib.EnvironmentVariables] = None, env: T.Optional[mesonlib.EnvironmentVariables] = None,
verbose: bool = False) -> T.Tuple[T.Sequence[T.Union[str, File, build.Target, programs.ExternalProgram]], str]: verbose: bool = False) -> T.Tuple[T.List[str], str]:
''' '''
Serialize an executable for running with a generator or a custom target Serialize an executable for running with a generator or a custom target
''' '''

Loading…
Cancel
Save