Skip to content

Commit a855a59

Browse files
committed
Update test_pandas.py
1 parent e87097f commit a855a59

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/tests/io/json/test_pandas.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import datetime
22
from datetime import timedelta
3-
from io import StringIO, BytesIO
3+
from io import (
4+
BytesIO,
5+
StringIO,
6+
)
47
import json
58
import os
69
import sys
@@ -2197,7 +2200,6 @@ def test_read_json_pyarrow_with_dtype(self):
21972200
)
21982201

21992202
result = df.dtypes
2200-
pa = pytest.importorskip("pyarrow")
22012203
expected = Series(
22022204
data=[
22032205
pd.ArrowDtype.construct_from_string("int32[pyarrow]"),

0 commit comments

Comments
 (0)