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 07294e6 commit 0c385e1Copy full SHA for 0c385e1
plotly/colors.py
@@ -224,7 +224,7 @@ def validate_colors(colors):
224
colors_list = colors
225
226
# Validate colors in colors_list
227
- for j, each_color in enumerate(colors_list):
+ for each_color in colors_list:
228
if 'rgb' in each_color:
229
each_color = color_parser(
230
each_color, unlabel_rgb
setup.py
@@ -1,6 +1,6 @@
1
from setuptools import setup
2
3
-exec (open('plotly/version.py').read())
+exec(open('plotly/version.py').read())
4
5
6
def readme():
0 commit comments