From 609fab9bfbe2deaad4e6689cd71fcc6173239647 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 27 Sep 2019 20:36:04 +0300 Subject: [PATCH] misc: fix lint --- pywal/backends/colorthief.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywal/backends/colorthief.py b/pywal/backends/colorthief.py index bcb9e39..aae5bd0 100644 --- a/pywal/backends/colorthief.py +++ b/pywal/backends/colorthief.py @@ -25,7 +25,7 @@ def gen_colors(img): if len(raw_colors) >= 8: break - elif i == 10: + if i == 10: logging.error("ColorThief couldn't generate a suitable palette.") sys.exit(1)