diff --git a/src/netius/auth/base.pyi b/src/netius/auth/base.pyi index d9d8133b..c469f440 100644 --- a/src/netius/auth/base.pyi +++ b/src/netius/auth/base.pyi @@ -1,4 +1,5 @@ -from typing import Any, Literal, Mapping, NoReturn, PathLike +from os import PathLike +from typing import Any, Literal, Mapping, NoReturn HashType = Literal["plain", "md5", "sha1", "sha256", "sha512"] diff --git a/src/netius/auth/passwd.pyi b/src/netius/auth/passwd.pyi index ccfff7a9..989fed38 100644 --- a/src/netius/auth/passwd.pyi +++ b/src/netius/auth/passwd.pyi @@ -1,4 +1,5 @@ -from typing import Mapping, PathLike +from os import PathLike +from typing import Mapping from netius import Auth