Skip to content

Commit 4a0238f

Browse files
committed
Fixed imports order
1 parent 1354f04 commit 4a0238f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

asv_bench/benchmarks/io/excel.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
from io import BytesIO
2+
23
import numpy as np
3-
from pandas import DataFrame, date_range, ExcelWriter, read_excel
4-
import pandas.util.testing as tm
54
from odf.opendocument import OpenDocumentSpreadsheet
5+
from odf.table import Table, TableCell, TableRow
66
from odf.text import P
7-
from odf.table import Table, TableRow, TableCell
7+
8+
from pandas import DataFrame, ExcelWriter, date_range, read_excel
9+
import pandas.util.testing as tm
810

911

1012
def _generate_dataframe():

0 commit comments

Comments
 (0)