Skip to content

Commit 441f879

Browse files
committed
fix order of imports
1 parent 112d6e9 commit 441f879

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/util/testing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import locale
77
import os
88
import re
9+
from shutil import rmtree
910
import string
1011
import subprocess
1112
import sys
@@ -27,6 +28,7 @@
2728
is_datetimelike_v_object, is_extension_array_dtype, is_interval_dtype,
2829
is_list_like, is_number, is_sequence, needs_i8_conversion)
2930
from pandas.core.dtypes.missing import array_equivalent
31+
3032
import pandas as pd
3133
from pandas import (
3234
Categorical, CategoricalIndex, DataFrame, DatetimeIndex, Index,
@@ -35,11 +37,9 @@
3537
from pandas.core.algorithms import take_1d
3638
from pandas.core.arrays import ExtensionArray, IntervalArray, PeriodArray
3739
import pandas.core.common as com
38-
from shutil import rmtree
3940

4041
from pandas.io.common import urlopen
4142
from pandas.io.formats.printing import pprint_thing
42-
from shutil import rmtree
4343

4444
N = 30
4545
K = 4

0 commit comments

Comments
 (0)