Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
marian-code committed Oct 7, 2021
1 parent 6ee0069 commit 676953c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ssh_utilities/local/_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ def name(self) -> Literal["nt", "posix", "java"]:

return self._osname

def walk(self, top: "_SPATH", topdown: bool = True,
onerror=None, followlinks: bool = False) -> os.walk:
return os.walk(top, topdown, onerror, followlinks)


class OsPathLocal(OsPathABC):
"""Drop in replacement for `os.path` module."""
Expand Down

0 comments on commit 676953c

Please sign in to comment.