Skip to content

Commit 0616c20

Browse files
committed
isort cleanup
1 parent a5e5096 commit 0616c20

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

pandas/tests/arrays/categorical/test_analytics.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@
66

77
from pandas.compat import PYPY
88

9-
from pandas import Categorical, CategoricalDtype, Index, NaT, Series, date_range
9+
from pandas import (
10+
Categorical,
11+
CategoricalDtype,
12+
Index,
13+
NaT,
14+
Series,
15+
date_range,
16+
)
1017
import pandas._testing as tm
1118
from pandas.api.types import is_scalar
1219

pandas/tests/indexes/categorical/test_category.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
from pandas._libs import index as libindex
55

66
import pandas as pd
7-
from pandas import Categorical, CategoricalDtype
7+
from pandas import (
8+
Categorical,
9+
CategoricalDtype,
10+
)
811
import pandas._testing as tm
912
from pandas.core.indexes.api import (
1013
CategoricalIndex,

0 commit comments

Comments
 (0)