Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Jul 7, 2019
1 parent 04ef01d commit 8067955
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from pandas._config import get_option

from pandas._libs import iNaT, index as libindex, lib, tslibs, reshape
from pandas._libs import iNaT, index as libindex, lib, reshape, tslibs
from pandas.compat import PY36
from pandas.compat.numpy import function as nv
from pandas.util._decorators import Appender, Substitution, deprecate
Expand All @@ -27,13 +27,13 @@
is_datetime64_dtype,
is_datetimelike,
is_dict_like,
is_object_dtype,
is_extension_array_dtype,
is_extension_type,
is_hashable,
is_integer,
is_iterator,
is_list_like,
is_object_dtype,
is_scalar,
is_string_like,
is_timedelta64_dtype,
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/series/test_explode.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
import numpy as np
import pytest

import pandas as pd
from pandas.util import testing as tm
Expand Down

0 comments on commit 8067955

Please sign in to comment.