Skip to content

Remove whitespace. Remove unused variable j. #909

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 22, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove whitespace. Remove unused variable j.
  • Loading branch information
jbampton committed Jan 6, 2018
commit 0c385e14c8d7c411d5701ce691f01f093f5e795f
2 changes: 1 addition & 1 deletion plotly/colors.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def validate_colors(colors):
colors_list = colors

# Validate colors in colors_list
for j, each_color in enumerate(colors_list):
for each_color in colors_list:
if 'rgb' in each_color:
each_color = color_parser(
each_color, unlabel_rgb
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

exec (open('plotly/version.py').read())
exec(open('plotly/version.py').read())


def readme():
Expand Down