Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kephale committed May 31, 2024
1 parent 502e338 commit 226e976
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_sshfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ def test_fsspec_registration(ssh_server):

def test_fsspec_url_parsing(ssh_server, remote_dir, user="user"):
for ep in pkg_resources.iter_entry_points(group="fsspec.specs"):
url = (
f"{ep.name}://{user}@{ssh_server.host}:{ssh_server.port}/{remote_dir}/file"
)
url = f"{ep.name}://{user}@{ssh_server.host}:{ssh_server.port}/{remote_dir}/file"
with fsspec.open(url, "w", client_keys=[USERS[user]]) as file:
# Check the underlying file system.
file_fs = file.buffer.fs
Expand Down

0 comments on commit 226e976

Please sign in to comment.