Skip to content

Commit 4111382

Browse files
committed
Fix issues from merge
1 parent e58cca2 commit 4111382

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/core/base.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
from pandas.core.dtypes.missing import isnull
1010
from pandas.core.dtypes.generic import ABCDataFrame, ABCSeries, ABCIndexClass
11-
from pandas.core.dtypes.common import is_object_dtype, is_list_like, is_scalar
11+
from pandas.core.dtypes.common import (is_object_dtype, is_list_like,
12+
is_scalar, is_extension_type)
1213
from pandas.util._validators import validate_bool_kwarg
1314

1415
from pandas.core import common as com, algorithms

pandas/core/series.py

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
_maybe_match_name,
4747
SettingWithCopyError,
4848
_maybe_box_datetimelike,
49-
_dict_compat,
5049
standardize_mapping)
5150
from pandas.core.index import (Index, MultiIndex, InvalidIndexError,
5251
Float64Index, _ensure_index)

0 commit comments

Comments
 (0)