We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd6c5f2 commit 1f61e87Copy full SHA for 1f61e87
pandas/io/formats/style.py
@@ -837,7 +837,8 @@ def set_tooltips(self, ttips: DataFrame):
837
"""
838
if not (self.columns.equals(ttips.columns) and self.index.equals(ttips.index)):
839
raise AttributeError(
840
- "Tooltips DataFrame must have identical column and index labelling to underlying."
+ "Tooltips DataFrame must have identical column and index labelling"
841
+ " to underlying."
842
)
843
844
self.cell_ids = True # tooltips only work with individual cell_ids
0 commit comments