File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ def __init__(
171
171
self .cell_ids = cell_ids
172
172
self .na_rep = na_rep
173
173
174
- self .tooltip_styles = None # VERSION ADDED 1.X
174
+ self .tooltip_styles = [] # VERSION ADDED 1.X
175
175
self .tooltip_class = None
176
176
self .tooltip_class_styles = None
177
177
self .set_tooltip_class (name = "pd-t" , properties = None )
@@ -837,8 +837,8 @@ def set_tooltips(self, ttips: DataFrame):
837
837
"""
838
838
if not (self .columns .equals (ttips .columns ) and self .index .equals (ttips .index )):
839
839
raise AttributeError (
840
- "Tooltips DataFrame must have identical column and index labelling"
841
- " to underlying."
840
+ "Tooltips DataFrame must have identical column and index labelling "
841
+ "to underlying."
842
842
)
843
843
844
844
self .cell_ids = True # tooltips only work with individual cell_ids
You can’t perform that action at this time.
0 commit comments