summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pywal/colors.py3
1 files changed, 1 insertions, 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():