We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0aa553 commit f12c14dCopy full SHA for f12c14d
pandas/_testing/asserters.py
@@ -6,6 +6,7 @@
6
)
7
8
import numpy as np
9
+
10
from pandas._libs.missing import is_matching_na
11
from pandas._libs.sparse import SparseIndex
12
import pandas._libs.testing as _testing
pandas/tests/indexes/test_base.py
@@ -18,7 +18,10 @@
18
19
from pandas.util._test_decorators import async_mark
20
21
-from pandas.core.dtypes.common import is_numeric_dtype
+from pandas.core.dtypes.common import (
22
+ is_numeric_dtype,
23
+ is_object_dtype,
24
+)
25
26
import pandas as pd
27
from pandas import (
@@ -43,7 +46,7 @@
43
46
ensure_index_from_sequences,
44
47
45
48
from pandas.tests.indexes.common import Base
-from pandas.core.dtypes.common import is_object_dtype
49
50
51
class TestIndex(Base):
52
_index_cls = Index
0 commit comments