Skip to content

Commit 66a37fe

Browse files
STYLE: Apply isort fixes
1 parent 122f554 commit 66a37fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/core/indexes/datetimes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@
3737
)
3838
from pandas.util._exceptions import find_stack_level
3939

40+
from pandas.core.dtypes.astype import astype_is_view
4041
from pandas.core.dtypes.common import is_scalar
4142
from pandas.core.dtypes.dtypes import (
4243
ArrowDtype,
4344
DatetimeTZDtype,
4445
)
45-
from pandas.core.dtypes.astype import astype_is_view
4646
from pandas.core.dtypes.generic import ABCSeries
4747
from pandas.core.dtypes.missing import is_valid_na_for_dtype
4848

49+
from pandas.core.arrays import ExtensionArray
4950
from pandas.core.arrays.datetimes import (
5051
DatetimeArray,
5152
tz_to_dtype,
5253
)
53-
from pandas.core.arrays import ExtensionArray
5454
import pandas.core.common as com
5555
from pandas.core.indexes.base import (
5656
Index,

pandas/core/indexes/timedeltas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
from pandas._libs.tslibs.dtypes import abbrev_to_npy_unit
2222
from pandas.util._decorators import set_module
2323

24+
from pandas.core.dtypes.astype import astype_is_view
2425
from pandas.core.dtypes.common import (
2526
is_scalar,
2627
pandas_dtype,
2728
)
28-
from pandas.core.dtypes.astype import astype_is_view
2929
from pandas.core.dtypes.dtypes import ArrowDtype
3030
from pandas.core.dtypes.generic import ABCSeries
3131

0 commit comments

Comments
 (0)