summaryrefslogtreecommitdiff
path: root/pywal/magic.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-22 19:11:14 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-22 19:11:14 +1000
commit016e97d6e640ec8f35965f9852f46104c83e982b (patch)
tree518b716fcb96266ab09095c5e6b33bbcb3082e84 /pywal/magic.py
parent6e39b78dc3a8ae6fc164f2fe26f6c0004d92dc41 (diff)
lint: Remove all lint comments.
Diffstat (limited to 'pywal/magic.py')
-rw-r--r--pywal/magic.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pywal/magic.py b/pywal/magic.py
index b384b97..757fdce 100644
--- a/pywal/magic.py
+++ b/pywal/magic.py
@@ -83,10 +83,10 @@ def sort_colors(img, colors):
colors_special.update({"cursor": raw_colors[15]})
colors_hex = {}
- [colors_hex.update({f"color{index}": color}) # pylint: disable=W0106
- for index, color in enumerate(raw_colors)]
- colors_hex["color8"] = util.set_grey(raw_colors)
+ for index, color in enumerate(raw_colors):
+ colors_hex.update({f"color{index}": color})
+ colors_hex["color8"] = util.set_grey(raw_colors)
colors["special"] = colors_special
colors["colors"] = colors_hex