Skip to content

Commit e4d77d9

Browse files
format/lint
1 parent b25d53b commit e4d77d9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/integration/dataframe/test_dataframe.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
from datetime import datetime, timezone
3-
from typing import Any, cast, List, Optional
3+
from typing import List, Optional
44

55
import pytest # type: ignore
66
import responses
@@ -826,7 +826,9 @@ def test__append_table_data__arrow_ingestion_non_400_passthrough(
826826
pa = pytest.importorskip("pyarrow")
827827
batch = pa.record_batch([pa.array([1, 2, 3])], names=["a"])
828828
with pytest.raises(ApiException) as excinfo:
829-
client.append_table_data("111111111111111111111111", [batch], end_of_data=True)
829+
client.append_table_data(
830+
"111111111111111111111111", [batch], end_of_data=True
831+
)
830832
assert "Arrow ingestion request was rejected" not in str(excinfo.value)
831833

832834
def test__append_table_data__unsupported_type_raises(

0 commit comments

Comments
 (0)