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.
list()
1 parent f5badba commit 29452a0Copy full SHA for 29452a0
plotly/tools.py
@@ -3888,7 +3888,7 @@ def get_table_font_color(self):
3888
if len(self.font_colors) == 1:
3889
all_font_colors = self.font_colors*len(self.table_text)
3890
elif len(self.font_colors) == 3:
3891
- all_font_colors = range(len(self.table_text))
+ all_font_colors = list(range(len(self.table_text)))
3892
all_font_colors[0] = self.font_colors[0]
3893
for i in range(1, len(self.table_text), 2):
3894
all_font_colors[i] = self.font_colors[1]
0 commit comments