From 88d391af3d59618c6257440d5781c4ac7b29da44 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 2 Jan 2018 14:57:32 +1100 Subject: [PATCH] misc: change --- pywal/colors.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pywal/colors.py b/pywal/colors.py index b4ad444..fbb045d 100644 --- a/pywal/colors.py +++ b/pywal/colors.py @@ -16,8 +16,7 @@ def imagemagick(color_count, img, magick_command): flags = ["-resize", "25%", "-colors", str(color_count), "-unique-colors", "txt:-"] - return subprocess.check_output([*magick_command, - img, *flags]).splitlines() + return subprocess.check_output([*magick_command, img, *flags]).splitlines() def has_im():