Skip to content

Commit 8429f9a

Browse files
committed
Fixed lint error
1 parent 469a0e6 commit 8429f9a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/formats/test_to_html.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1871,6 +1871,7 @@ def test_to_html_notebook_has_no_style(self):
18711871
assert "thead tr:only-child" not in result
18721872

18731873
def test_to_html_with_index_names_false(self):
1874-
df = pd.DataFrame({"A": [1, 2]}, index=pd.Index(['a', 'b'], name='myindexname'))
1874+
df = pd.DataFrame({"A": [1, 2]}, index=pd.Index(['a', 'b'],
1875+
name='myindexname'))
18751876
result = df.to_html(index_names=False)
18761877
assert 'myindexname' not in result

0 commit comments

Comments
 (0)