Skip to content

Commit 8067955

Browse files
committed
isort
1 parent 04ef01d commit 8067955

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/core/series.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from pandas._config import get_option
1414

15-
from pandas._libs import iNaT, index as libindex, lib, tslibs, reshape
15+
from pandas._libs import iNaT, index as libindex, lib, reshape, tslibs
1616
from pandas.compat import PY36
1717
from pandas.compat.numpy import function as nv
1818
from pandas.util._decorators import Appender, Substitution, deprecate
@@ -27,13 +27,13 @@
2727
is_datetime64_dtype,
2828
is_datetimelike,
2929
is_dict_like,
30-
is_object_dtype,
3130
is_extension_array_dtype,
3231
is_extension_type,
3332
is_hashable,
3433
is_integer,
3534
is_iterator,
3635
is_list_like,
36+
is_object_dtype,
3737
is_scalar,
3838
is_string_like,
3939
is_timedelta64_dtype,

pandas/tests/series/test_explode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import pytest
21
import numpy as np
2+
import pytest
33

44
import pandas as pd
55
from pandas.util import testing as tm

0 commit comments

Comments
 (0)