Skip to content

Commit cc49da6

Browse files
committed
Sort imports
1 parent 7ab8e6d commit cc49da6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/base.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
from pandas.util._validators import validate_bool_kwarg
1717

1818
from pandas.core.dtypes.common import (
19-
is_datetime64_ns_dtype, is_datetime64tz_dtype, is_datetimelike,
20-
is_extension_array_dtype, is_extension_type, is_list_like, is_object_dtype,
21-
is_scalar, is_timedelta64_ns_dtype, is_categorical_dtype)
19+
is_categorical_dtype, is_datetime64_ns_dtype, is_datetime64tz_dtype,
20+
is_datetimelike, is_extension_array_dtype, is_extension_type, is_list_like,
21+
is_object_dtype, is_scalar, is_timedelta64_ns_dtype)
2222
from pandas.core.dtypes.generic import ABCDataFrame, ABCIndexClass, ABCSeries
2323
from pandas.core.dtypes.missing import isna
2424

0 commit comments

Comments
 (0)