mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-09 07:28:46 +01:00
colors: fix test
This commit is contained in:
parent
7704f529c1
commit
0e9d68aa2a
@ -75,7 +75,7 @@ def generic_adjust(colors, light):
|
||||
|
||||
def saturate_colors(colors, amount):
|
||||
"""Saturate all colors."""
|
||||
if float(amount) <= 1.0:
|
||||
if amount and float(amount) <= 1.0:
|
||||
for i, _ in enumerate(colors):
|
||||
if i not in [0, 7, 8, 15]:
|
||||
colors[i] = util.saturate_color(colors[i], float(amount))
|
||||
|
Loading…
Reference in New Issue
Block a user