Skip to content

Commit

Permalink
Update colormap.py
Browse files Browse the repository at this point in the history
fixes bug where flake8 does not see that the syntax was wrong and make @aashish24 and @sankhesh happy.
  • Loading branch information
doutriaux1 committed Nov 20, 2015
1 parent 9278e1d commit 344cea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packages/vcs/Lib/colormap.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def process_src(nm, code):
for i in range(255):
val = numbers[i * 3:i * 3 + 3]
if val != ():
d[i] = list(val)+[100]
d[i] = list(val) + [100]
cp = Cp(nm)
cp.index.data.update(d)

Expand Down

0 comments on commit 344cea0

Please sign in to comment.