diff --git a/tests/test_sshfs.py b/tests/test_sshfs.py index a6867f6..a9e858a 100644 --- a/tests/test_sshfs.py +++ b/tests/test_sshfs.py @@ -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