summaryrefslogtreecommitdiff
path: root/pywal/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'pywal/util.py')
-rw-r--r--pywal/util.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pywal/util.py b/pywal/util.py
index 63b5bbd..9931958 100644
--- a/pywal/util.py
+++ b/pywal/util.py
@@ -100,7 +100,6 @@ def rgb_to_hex(color):
def darken_color(color, amount):
"""Darken a hex color."""
color = [int(col * (1 - amount)) for col in hex_to_rgb(color)]
- print(color)
return rgb_to_hex(color)