Skip to content

Commit 0b67961

Browse files
committed
Remove second stray commit
1 parent f8954f4 commit 0b67961

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/core/frame.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -612,11 +612,9 @@ def _repr_html_(self):
612612
max_rows = get_option("display.max_rows")
613613
max_cols = get_option("display.max_columns")
614614
show_dimensions = get_option("display.show_dimensions")
615-
classes = ['pandas_notebook']
616615

617616
return self.to_html(max_rows=max_rows, max_cols=max_cols,
618-
show_dimensions=show_dimensions, notebook=True,
619-
classes=classes)
617+
show_dimensions=show_dimensions, notebook=True)
620618
else:
621619
return None
622620

0 commit comments

Comments
 (0)