Skip to content

Commit 52cd37f

Browse files
committed
precommit
1 parent 4526bb1 commit 52cd37f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/tests/extension/test_arrow.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
pa_version_under20p0,
4747
)
4848

49+
from pandas.core.dtypes.common import is_timedelta64_dtype
4950
from pandas.core.dtypes.dtypes import (
5051
ArrowDtype,
5152
CategoricalDtypeType,
@@ -64,7 +65,6 @@
6465
is_string_dtype,
6566
is_unsigned_integer_dtype,
6667
)
67-
from pandas.core.dtypes.common import is_timedelta64_dtype
6868
from pandas.tests.extension import base
6969

7070
pa = pytest.importorskip("pyarrow")
@@ -306,8 +306,9 @@ def test_map(self, data_missing, na_action):
306306
result = result.astype("timedelta64[ns]")
307307
expected = expected.astype("timedelta64[ns]")
308308

309-
310-
tm.assert_series_equal(result, expected, check_dtype=False, check_exact=False)
309+
tm.assert_series_equal(
310+
result, expected, check_dtype=False, check_exact=False
311+
)
311312

312313
else:
313314
result = data_missing.map(lambda x: x, na_action=na_action)

0 commit comments

Comments
 (0)