summaryrefslogtreecommitdiff
path: root/pywal
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2018-07-06 08:37:42 +1000
committerDylan Araps <dylan.araps@gmail.com>2018-07-06 08:37:42 +1000
commitc5d5be8cdf0cdb8bdd178d27bd07df89a7a0d50a (patch)
tree0aac0379bc67764c8a71b70b04437b2e1c458bf2 /pywal
parentd525bab593a42407b41375aaa6de24f6a04e5ea6 (diff)
travis: 3.7 support
Diffstat (limited to 'pywal')
-rw-r--r--pywal/backends/colorz.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pywal/backends/colorz.py b/pywal/backends/colorz.py
index 83afc5a..9197e9a 100644
--- a/pywal/backends/colorz.py
+++ b/pywal/backends/colorz.py
@@ -18,6 +18,7 @@ from .. import util
def gen_colors(img):
"""Generate a colorscheme using Colorz."""
+ # pylint: disable=not-callable
raw_colors = colorz.colorz(img, n=6, bold_add=0)
return [util.rgb_to_hex([*color[0]]) for color in raw_colors]