Skip to content

Commit f12c14d

Browse files
committed
isort fix
1 parent f0aa553 commit f12c14d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pandas/_testing/asserters.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
)
77

88
import numpy as np
9+
910
from pandas._libs.missing import is_matching_na
1011
from pandas._libs.sparse import SparseIndex
1112
import pandas._libs.testing as _testing

pandas/tests/indexes/test_base.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818
)
1919
from pandas.util._test_decorators import async_mark
2020

21-
from pandas.core.dtypes.common import is_numeric_dtype
21+
from pandas.core.dtypes.common import (
22+
is_numeric_dtype,
23+
is_object_dtype,
24+
)
2225

2326
import pandas as pd
2427
from pandas import (
@@ -43,7 +46,7 @@
4346
ensure_index_from_sequences,
4447
)
4548
from pandas.tests.indexes.common import Base
46-
from pandas.core.dtypes.common import is_object_dtype
49+
4750

4851
class TestIndex(Base):
4952
_index_cls = Index

0 commit comments

Comments
 (0)