diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 10:33:23 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 10:33:23 +1100 |
| commit | c46c20856159aba67f07d07b07682eff508e282b (patch) | |
| tree | 18cd5d90bd66d8e1bea682d81b21b978936c0963 /pywal/util.py | |
| parent | 296d3f54b9c104fbd31d7f12a5af3a8da490b245 (diff) | |
wallpaper: Remove duplicate code
Diffstat (limited to 'pywal/util.py')
| -rw-r--r-- | pywal/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/util.py b/pywal/util.py index 6f9376a..28048ba 100644 --- a/pywal/util.py +++ b/pywal/util.py @@ -20,7 +20,7 @@ class Color: @property def rgb(self): """Convert a hex color to rgb.""" - return "%s,%s,%s" % (*hex_to_rgb(self.hex_color)) + return "%s,%s,%s" % (*hex_to_rgb(self.hex_color),) @property def xrgba(self): |
