Skip to content

Commit f0ab21f

Browse files
rockgwesm
authored andcommitted
PEP: pandas/core round 7 (window, reshape, series, format)
And residual categorical. What should we do with api/sparse/matrix as those are all unused imports--noqa for each line? Author: rockg <grant.roch@gmail.com> Closes #12099 from rockg/pep8-round7 and squashes the following commits: 2e61f9c [rockg] PEP: pandas/core round 7 (window, reshape, series, format, minor categorical)
1 parent a783d1d commit f0ab21f

File tree

5 files changed

+639
-582
lines changed

5 files changed

+639
-582
lines changed

pandas/core/categorical.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
from pandas.util.decorators import cache_readonly, deprecate_kwarg
1515

1616
from pandas.core.common import (
17-
ABCSeries, ABCIndexClass, ABCPeriodIndex, ABCCategoricalIndex, isnull,
18-
notnull, is_dtype_equal, is_categorical_dtype, is_integer_dtype,
19-
is_object_dtype, _possibly_infer_to_datetimelike, get_dtype_kinds,
20-
is_list_like, is_sequence, is_null_slice, is_bool, _ensure_platform_int,
21-
_ensure_object, _ensure_int64, _coerce_indexer_dtype, take_1d)
17+
ABCSeries, ABCIndexClass, ABCCategoricalIndex, isnull, notnull,
18+
is_dtype_equal, is_categorical_dtype, is_integer_dtype,
19+
_possibly_infer_to_datetimelike, get_dtype_kinds, is_list_like,
20+
is_sequence, is_null_slice, is_bool, _ensure_object, _ensure_int64,
21+
_coerce_indexer_dtype, take_1d)
2222
from pandas.core.dtypes import CategoricalDtype
2323
from pandas.util.terminal import get_terminal_size
2424
from pandas.core.config import get_option

0 commit comments

Comments
 (0)