diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 14:57:32 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 14:57:32 +1100 |
| commit | 88d391af3d59618c6257440d5781c4ac7b29da44 (patch) | |
| tree | d4ed664a0a33d8736266898b747247c7814b06cc | |
| parent | 30ea15b0e2c3e7152b6b09e214e37973e43f5133 (diff) | |
misc: change
| -rw-r--r-- | pywal/colors.py | 3 |
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(): |
