Skip to content

Commit 676953c

Browse files
committed
bugfix
1 parent 6ee0069 commit 676953c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ssh_utilities/local/_os.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ def name(self) -> Literal["nt", "posix", "java"]:
110110

111111
return self._osname
112112

113+
def walk(self, top: "_SPATH", topdown: bool = True,
114+
onerror=None, followlinks: bool = False) -> os.walk:
115+
return os.walk(top, topdown, onerror, followlinks)
116+
113117

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

0 commit comments

Comments
 (0)