Skip to content

Commit 41c1d82

Browse files
committed
PEP8 fix
1 parent bbeb711 commit 41c1d82

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/tests/io/test_html.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -842,9 +842,10 @@ def test_parse_dates_combine(self):
842842

843843
def test_computer_sales_page(self):
844844
data = os.path.join(DATA_PATH, 'computer_sales_page.html')
845-
# This table is unique because it has no <thead>, and its <th>-only rows
846-
# are underneath an initial <td>-only row that has no content. After
847-
# skipping the empty row, header=[0,1] picks the two <th>-only rows.
845+
# This table is unique because it has no <thead>, and its <th>-only
846+
# rows are underneath an initial <td>-only row that has no content.
847+
# After #kipping the empty row, header=[0,1] picks the two <th>-only
848+
# rows.
848849
df = self.read_html(data, header=[0, 1])[0]
849850
assert df.columns[3] == ('Three months ended April\xa030', '2013.1')
850851
assert df['Three months ended April\xa030', '2013.1'][2] == '3718'

0 commit comments

Comments
 (0)