From ab06ae459136d8dbed3ef278d37d43afb97b956b Mon Sep 17 00:00:00 2001 From: ladyrick Date: Fri, 2 Feb 2024 22:21:02 +0800 Subject: [PATCH] add get_exist_path to systemctl3.pyi Signed-off-by: ladyrick --- types/systemctl3.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/types/systemctl3.pyi b/types/systemctl3.pyi index 040b91e..3d72198 100644 --- a/types/systemctl3.pyi +++ b/types/systemctl3.pyi @@ -117,6 +117,7 @@ def unit_name_unescape(text: str) -> str: ... def is_good_root(root: Optional[str]) -> bool: ... def os_path(root: Optional[str], path: str) -> str: ... def path_replace_extension(path: str, old: str, new: str) -> str: ... +def get_exist_path(paths: List[str]) -> Optional[str]: ... def get_PAGER() -> List[str]: ... def os_getlogin() -> str: ... def get_runtime_dir() -> str: ...