From 9efc64f170fa608fd9e0d91b3f13e033af12919c Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 31 Mar 2018 17:05:41 +1100 Subject: pylint: fixes --- pywal/__main__.py | 2 +- pywal/colors.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'pywal') diff --git a/pywal/__main__.py b/pywal/__main__.py index 8a7d760..05eea99 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -128,7 +128,7 @@ def process_args(args): if args.i: image_file = image.get(args.i) - colors_plain = colors.gen(image_file, args.l, args.backend) + colors_plain = colors.get(image_file, args.l, args.backend) if args.f: colors_plain = colors.file(args.f) diff --git a/pywal/colors.py b/pywal/colors.py index 164f34a..20110da 100644 --- a/pywal/colors.py +++ b/pywal/colors.py @@ -53,7 +53,7 @@ def generic_adjust(colors, light): return colors -def gen(img, light=False, backend="wal", cache_dir=CACHE_DIR): +def get(img, light=False, backend="wal", cache_dir=CACHE_DIR): """Generate a palette.""" # home_dylan_img_jpg_backend_1.2.2.json color_type = "light" if light else "dark" -- cgit v1.2.3