mirror of https://github.com/flaggo/pydu.git
add stub for path.normjoin
This commit is contained in:
parent
25df88abe9
commit
2bf3f1e729
|
@ -1,5 +1,6 @@
|
||||||
from typing import ContextManager
|
from typing import ContextManager, List
|
||||||
|
|
||||||
|
|
||||||
def cd(path: str) -> ContextManager[None]: ...
|
def cd(path: str) -> ContextManager[None]: ...
|
||||||
def is_super_path(path1: str, path2: str) -> bool: ...
|
def is_super_path(path1: str, path2: str) -> bool: ...
|
||||||
|
def normjoin(path: str, *paths: List(str)) -> str: ...
|
||||||
|
|
Loading…
Reference in New Issue