Skip to content

Commit c2bcc27

Browse files
committed
CLN - Import sorting fix
1 parent aec4276 commit c2bcc27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"""
22
Data structure for 1-dimensional cross-sectional and time series data
33
"""
4+
from collections import abc
45
from io import StringIO
56
from shutil import get_terminal_size
67
from textwrap import dedent
78
from typing import Any, Callable, Hashable, List, Optional
8-
from collections import abc
99
import warnings
1010

1111
import numpy as np

pandas/tests/series/test_apply.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from collections import Counter, OrderedDict, defaultdict, abc
1+
from collections import Counter, OrderedDict, abc, defaultdict
22
from itertools import chain
33

44
import numpy as np

0 commit comments

Comments
 (0)