Skip to content

Commit

Permalink
Fix SFTPFilesystem parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanluoyc committed Mar 27, 2024
1 parent eadffa5 commit c3f9940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lxm3/xm_cluster/artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def __init__(
):
if connect_kwargs is None:
connect_kwargs = {}
fs = SFTPFileSystem("sftp", host=hostname, username=user, **connect_kwargs) # type: ignore
fs = SFTPFileSystem(host=hostname, username=user, **connect_kwargs) # type: ignore
# Normalize the storage root to an absolute path.
self._host = hostname
self._user = user
Expand Down

0 comments on commit c3f9940

Please sign in to comment.