Skip to content

Commit db20795

Browse files
committed
ENH: pep8 line length
1 parent 77b6c9a commit db20795

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/formats/style.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,8 @@ def set_tooltips(self, ttips: DataFrame):
837837
"""
838838
if not (self.columns.equals(ttips.columns) and self.index.equals(ttips.index)):
839839
raise AttributeError(
840-
"Tooltips DataFrame must have identical column and index labelling to underlying."
840+
"Tooltips DataFrame must have identical column and index labelling"
841+
" to underlying."
841842
)
842843

843844
self.cell_ids = True # tooltips only work with individual cell_ids

0 commit comments

Comments
 (0)