diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2019-09-27 20:36:04 +0300 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2019-09-27 20:36:04 +0300 |
| commit | 609fab9bfbe2deaad4e6689cd71fcc6173239647 (patch) | |
| tree | 6cade3750faa0981ce62f474a23af0e2d9c72335 /pywal/backends | |
| parent | 426768e77bc514c216cd7e1dc9628d1ba2a868b1 (diff) | |
misc: fix lint
Diffstat (limited to 'pywal/backends')
| -rw-r--r-- | pywal/backends/colorthief.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
