Skip to content

Commit f13d38a

Browse files
committed
Isort the files
1 parent 2f87aad commit f13d38a

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
@@ -20,13 +20,12 @@
2020
is_extension_type, is_float_dtype, is_object_dtype, is_period_dtype,
2121
is_string_dtype, is_timedelta64_dtype, pandas_dtype)
2222
from pandas.core.dtypes.dtypes import DatetimeTZDtype
23-
from pandas.core.dtypes.generic import (
24-
ABCIndexClass, ABCPandasArray, ABCSeries)
23+
from pandas.core.dtypes.generic import ABCIndexClass, ABCPandasArray, ABCSeries
2524
from pandas.core.dtypes.missing import isna
2625

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

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
@@ -18,8 +18,7 @@
1818
_TD_DTYPE, ensure_object, is_datetime64_dtype, is_float_dtype,
1919
is_period_dtype, pandas_dtype)
2020
from pandas.core.dtypes.dtypes import PeriodDtype
21-
from pandas.core.dtypes.generic import (
22-
ABCIndexClass, ABCPeriodIndex, ABCSeries)
21+
from pandas.core.dtypes.generic import ABCIndexClass, ABCPeriodIndex, ABCSeries
2322
from pandas.core.dtypes.missing import isna, notna
2423

2524
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
@@ -15,7 +15,6 @@
1515
import pandas.compat as compat
1616
from pandas.util._decorators import Appender
1717

18-
from pandas.core.arrays import CompWrapper
1918
from pandas.core.dtypes.common import (
2019
_NS_DTYPE, _TD_DTYPE, ensure_int64, is_datetime64_dtype, is_dtype_equal,
2120
is_float_dtype, is_integer_dtype, is_list_like, is_object_dtype, is_scalar,
@@ -28,6 +27,7 @@
2827

2928
from pandas.core import ops
3029
from pandas.core.algorithms import checked_add_with_arr
30+
from pandas.core.arrays import CompWrapper
3131
import pandas.core.common as com
3232

3333
from pandas.tseries.frequencies import to_offset

0 commit comments

Comments
 (0)