diff options
| author | Dylan Araps <dylanaraps@users.noreply.github.com> | 2017-07-02 23:27:29 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-02 23:27:29 +1000 |
| commit | 5472eaa972b374179a22f9d3b1f68c218067ef88 (patch) | |
| tree | d13fd177d7ec4b982ebc9c4f2ecd7bc3d0bc730f /pywal | |
| parent | 14fa95f825a4945ec0dd8be02a24ddc53cdaa6e3 (diff) | |
util: Update docs
Diffstat (limited to 'pywal')
| -rw-r--r-- | pywal/util.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pywal/util.py b/pywal/util.py index 8bfd676..ab5debf 100644 --- a/pywal/util.py +++ b/pywal/util.py @@ -8,7 +8,7 @@ import subprocess # pylint: disable=too-few-public-methods -class Color(object): +class Color: """Color formats.""" def __init__(self, hex_color): self.hex_color = hex_color @@ -23,7 +23,8 @@ class Color(object): def set_grey(colors): - """Set a grey color based on brightness of color0.""" + """Set a grey color based on the brightness + of another color.""" return { "0": "#666666", "1": "#666666", |
