Skip to content

Commit 04916ca

Browse files
committed
lint
1 parent 36ae44d commit 04916ca

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/pyarrow/tests/test_fs.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1455,8 +1455,9 @@ def test_s3_proxy_options(monkeypatch, pickle_module):
14551455
S3FileSystem(proxy_options='httpsB://localhost:9000')
14561456
# Invalid proxy_options dict (invalid scheme httpA)
14571457
with pytest.raises(pa.ArrowInvalid):
1458-
S3FileSystem(proxy_options={ # type: ignore[typeddict-item]
1459-
'scheme': 'httpA', 'host': 'localhost', 'port': 8999})
1458+
S3FileSystem(proxy_options={
1459+
'scheme': 'httpA', # type: ignore[typeddict-item]
1460+
'host': 'localhost', 'port': 8999})
14601461

14611462

14621463
@pytest.mark.s3

0 commit comments

Comments
 (0)