From 2bf3f1e729887a31e9d96b12b06e76b879f9e005 Mon Sep 17 00:00:00 2001 From: Prodesire Date: Mon, 19 Mar 2018 12:03:16 +0800 Subject: [PATCH] add stub for path.normjoin --- stubs/pydu/path.pyi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: ...