Skip to content

Commit 412aa23

Browse files
committed
lint
1 parent 31dc872 commit 412aa23

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

fsspec/implementations/tests/test_dirfs.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,10 @@ def test_sign(mocker, dirfs):
592592
@pytest.mark.asyncio
593593
async def test_open_async(mocker, adirfs):
594594
adirfs.fs.open_async = mocker.AsyncMock()
595-
assert await adirfs.open_async("file", *ARGS, **KWARGS) == adirfs.fs.open_async.return_value
595+
assert (
596+
await adirfs.open_async("file", *ARGS, **KWARGS)
597+
== adirfs.fs.open_async.return_value
598+
)
596599
adirfs.fs.open_async.assert_called_once_with(f"{PATH}/file", *ARGS, **KWARGS)
597600

598601

0 commit comments

Comments
 (0)