diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-06 21:18:34 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-06 21:18:34 +1000 |
| commit | 7508d0139df8e455d27f37ffa46f2d8d6f043ae6 (patch) | |
| tree | 3e03732cbf94f545d1a820601a3bcb8075addc43 | |
| parent | 3558cbd49143b71494dc66042a86dec8782d9a6b (diff) | |
general: small cleanup.
| -rw-r--r-- | pywal/wallpaper.py | 1 | ||||
| -rw-r--r-- | setup.py | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/pywal/wallpaper.py b/pywal/wallpaper.py index cc953c2..1df3403 100644 --- a/pywal/wallpaper.py +++ b/pywal/wallpaper.py @@ -91,4 +91,3 @@ def set_wallpaper(img): set_wm_wallpaper(img) print("wallpaper: Set the new wallpaper") - return 0 @@ -1,5 +1,5 @@ """wal - setup.py""" -from setuptools import setup +import setuptools import pywal @@ -13,7 +13,7 @@ VERSION = pywal.__version__ DOWNLOAD_URL = f"https://github.com/dylanaraps/pywal/archive/{VERSION}.tar.gz" -setup( +setuptools.setup( name="pywal", version=VERSION, author="Dylan Araps", |
