Skip to content

Commit 94fa0a9

Browse files
committed
sort imports using isort
1 parent 0dea22d commit 94fa0a9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

pandas/tests/test_algos.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@
1010
from pandas.compat.numpy import np_array_datetime64_compat
1111
import pandas.util._test_decorators as td
1212

13-
from pandas.core.dtypes.dtypes import CategoricalDtype as CDT
14-
1513
from pandas.core.dtypes.common import (
16-
is_integer_dtype,
17-
is_float_dtype,
18-
is_complex_dtype,
1914
is_bool_dtype,
15+
is_complex_dtype,
16+
is_float_dtype,
17+
is_integer_dtype,
2018
is_object_dtype,
2119
)
22-
from pandas.conftest import BYTES_DTYPES, STRING_DTYPES
20+
from pandas.core.dtypes.dtypes import CategoricalDtype as CDT
2321

2422
import pandas as pd
2523
from pandas import (
@@ -32,6 +30,7 @@
3230
Timestamp,
3331
compat,
3432
)
33+
from pandas.conftest import BYTES_DTYPES, STRING_DTYPES
3534
import pandas.core.algorithms as algos
3635
from pandas.core.arrays import DatetimeArray
3736
import pandas.core.common as com

0 commit comments

Comments
 (0)