Skip to content

Commit b48199f

Browse files
committed
Fix argument passing in rmtree method call
1 parent cc5ce45 commit b48199f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jobflow_remote/remote/host/separated.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def rmtree(self, path: str | Path, raise_on_error: bool = False) -> bool:
162162
bool
163163
True if the directory tree was successfully removed.
164164
"""
165-
return self.command_host.rmtree(path, raise_on_error)
165+
return self.command_host.rmtree(path, raise_on_error=raise_on_error)
166166

167167
# -------------------------------------------------------------------------
168168
# File operations via SFTP commands - delegated to transfer_host

0 commit comments

Comments
 (0)