General: Reduce number of imports in gen_colors.

This commit is contained in:
Dylan Araps 2017-06-26 12:29:22 +10:00
parent b47dcb1e0d
commit a3db341980
2 changed files with 2 additions and 2 deletions

View File

@ -84,6 +84,7 @@ def process_args(args):
if args.i:
image = gen_colors.get_image(args.i)
s.ColorType.plain = gen_colors.get_colors(image)
s.ColorType.plain[8] = set_colors.set_grey(s.ColorType.plain)
if not args.n:
wallpaper.set_wallpaper(image)

View File

@ -9,7 +9,6 @@ import shutil
import subprocess
from pywal import settings as s
from pywal import set_colors
from pywal import util
@ -131,7 +130,7 @@ def sort_colors(colors):
sorted_colors.append(colors[13])
sorted_colors.append(colors[14])
sorted_colors.append(colors[15])
sorted_colors.append(set_colors.set_grey(colors))
sorted_colors.append(colors[8])
sorted_colors.append(colors[9])
sorted_colors.append(colors[10])
sorted_colors.append(colors[11])