Skip to content

Commit 450f1f3

Browse files
CLN: cleanup tests as by pre-commit
Co-Authored-By: Dacops <[email protected]>
1 parent cf75c28 commit 450f1f3

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

pandas/tests/io/excel/test_openpyxl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,5 +436,5 @@ def test_read_notes_from_xlsx_files(datapath, ext):
436436
expected = DataFrame([["note 1", "note 2"], ["", "note 4"], ["note 5", ""]])
437437
result = DataFrame()
438438
pd.read_excel(path, engine="openpyxl", notes=result)
439-
439+
440440
tm.assert_frame_equal(result, expected)

pandas/tests/io/excel/test_xlrd.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,3 @@ def test_read_notes_from_xls_files(datapath, read_ext_xlrd):
8282
pd.read_excel(path, engine="xlrd", notes=result)
8383

8484
tm.assert_frame_equal(result, expected)
85-

pandas/tests/io/excel/test_xlsxwriter.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77

88
from pandas.io.excel import ExcelWriter
99

10-
import pandas as pd
11-
12-
import pandas._testing as tm
13-
1410
xlsxwriter = pytest.importorskip("xlsxwriter")
1511

1612

0 commit comments

Comments
 (0)