We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dec2633 commit 5dcff04Copy full SHA for 5dcff04
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