Skip to content

Commit

Permalink
fix: references to PathLike
Browse files Browse the repository at this point in the history
They were not referring typing instead of os.
  • Loading branch information
joamag committed Mar 14, 2024
1 parent 984cbac commit 81cdd0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/netius/auth/base.pyi
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down
3 changes: 2 additions & 1 deletion src/netius/auth/passwd.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from typing import Mapping, PathLike
from os import PathLike
from typing import Mapping

from netius import Auth

Expand Down

0 comments on commit 81cdd0b

Please sign in to comment.