diff --git a/stubs/pydu/path.pyi b/stubs/pydu/path.pyi index 3231207..b308fc0 100644 --- a/stubs/pydu/path.pyi +++ b/stubs/pydu/path.pyi @@ -1,5 +1,6 @@ -from typing import ContextManager +from typing import ContextManager, List def cd(path: str) -> ContextManager[None]: ... def is_super_path(path1: str, path2: str) -> bool: ... +def normjoin(path: str, *paths: List(str)) -> str: ...