Skip to content

Commit 66e8407

Browse files
committed
Isort the files
1 parent 6d0f4dd commit 66e8407

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

pandas/core/arrays/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
This is an experimental API and subject to breaking changes
66
without warning.
77
"""
8-
import operator
98
from functools import wraps
9+
import operator
1010

1111
import numpy as np
1212

pandas/core/arrays/datetimes.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@
1919
is_extension_type, is_float_dtype, is_object_dtype, is_period_dtype,
2020
is_string_dtype, is_timedelta64_dtype, pandas_dtype)
2121
from pandas.core.dtypes.dtypes import DatetimeTZDtype
22-
from pandas.core.dtypes.generic import (
23-
ABCIndexClass, ABCPandasArray, ABCSeries)
22+
from pandas.core.dtypes.generic import ABCIndexClass, ABCPandasArray, ABCSeries
2423
from pandas.core.dtypes.missing import isna
2524

2625
from pandas.core import ops
2726
from pandas.core.algorithms import checked_add_with_arr
28-
from pandas.core.arrays import datetimelike as dtl, CompWrapper
27+
from pandas.core.arrays import CompWrapper, datetimelike as dtl
2928
from pandas.core.arrays._ranges import generate_regular_range
3029
import pandas.core.common as com
3130

pandas/core/arrays/integer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from pandas.core.dtypes.missing import isna, notna
1919

2020
from pandas.core import nanops
21-
from pandas.core.arrays import ExtensionArray, ExtensionOpsMixin, CompWrapper
21+
from pandas.core.arrays import CompWrapper, ExtensionArray, ExtensionOpsMixin
2222
from pandas.core.tools.numeric import to_numeric
2323

2424

pandas/core/arrays/period.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
_TD_DTYPE, ensure_object, is_datetime64_dtype, is_float_dtype,
1818
is_period_dtype, pandas_dtype)
1919
from pandas.core.dtypes.dtypes import PeriodDtype
20-
from pandas.core.dtypes.generic import (
21-
ABCIndexClass, ABCPeriodIndex, ABCSeries)
20+
from pandas.core.dtypes.generic import ABCIndexClass, ABCPeriodIndex, ABCSeries
2221
from pandas.core.dtypes.missing import isna, notna
2322

2423
import pandas.core.algorithms as algos

pandas/core/arrays/timedeltas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import pandas.compat as compat
1515
from pandas.util._decorators import Appender
1616

17-
from pandas.core.arrays import CompWrapper
1817
from pandas.core.dtypes.common import (
1918
_NS_DTYPE, _TD_DTYPE, ensure_int64, is_datetime64_dtype, is_float_dtype,
2019
is_integer_dtype, is_list_like, is_object_dtype, is_scalar,
@@ -27,6 +26,7 @@
2726

2827
from pandas.core import ops
2928
from pandas.core.algorithms import checked_add_with_arr
29+
from pandas.core.arrays import CompWrapper
3030
import pandas.core.common as com
3131

3232
from pandas.tseries.frequencies import to_offset

0 commit comments

Comments
 (0)