Skip to content

Commit 0c385e1

Browse files
committed
Remove whitespace. Remove unused variable j.
1 parent 07294e6 commit 0c385e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plotly/colors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def validate_colors(colors):
224224
colors_list = colors
225225

226226
# Validate colors in colors_list
227-
for j, each_color in enumerate(colors_list):
227+
for each_color in colors_list:
228228
if 'rgb' in each_color:
229229
each_color = color_parser(
230230
each_color, unlabel_rgb

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
exec (open('plotly/version.py').read())
3+
exec(open('plotly/version.py').read())
44

55

66
def readme():

0 commit comments

Comments
 (0)