colors: fix print

This commit is contained in:
Dylan Araps 2017-08-02 19:40:42 +10:00
parent 93c4bcd96b
commit af96e382b4
2 changed files with 0 additions and 2 deletions

View File

@ -65,7 +65,6 @@ def sort_colors(img, colors):
raw_colors[8] = util.lighten_color(raw_colors[0], 0.40)
colors = {"wallpaper": img}
colors_special = {}
colors_hex = {}

View File

@ -100,7 +100,6 @@ def rgb_to_hex(color):
def darken_color(color, amount):
"""Darken a hex color."""
color = [int(col * (1 - amount)) for col in hex_to_rgb(color)]
print(color)
return rgb_to_hex(color)