wrap: fix type annotations

0.56
Dylan Baker 4 years ago committed by Nirbheek Chauhan
parent e0d3d25a48
commit 4ac74010b1
  1. 4
      mesonbuild/wrap/wrap.py

@ -187,12 +187,12 @@ def get_directory(subdir_root: str, packagename: str) -> str:
return wrap.directory return wrap.directory
return packagename return packagename
def verbose_git(*args, **kwargs): def verbose_git(cmd: T.List[str], workingdir: str, check: bool = False) -> bool:
''' '''
Wrapper to convert GitException to WrapException caught in interpreter. Wrapper to convert GitException to WrapException caught in interpreter.
''' '''
try: try:
return mesonlib.verbose_git(*args, **kwargs) return mesonlib.verbose_git(cmd, workingdir, check=check)
except mesonlib.GitException as e: except mesonlib.GitException as e:
raise WrapException(str(e)) raise WrapException(str(e))

Loading…
Cancel
Save