diff --git a/pywal/wallpaper.py b/pywal/wallpaper.py index cc953c25..1df3403f 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 diff --git a/setup.py b/setup.py index 4b8c4086..cdf72add 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ """wal - setup.py""" -from setuptools import setup +import setuptools import pywal @@ -13,7 +13,7 @@ DOWNLOAD_URL = f"https://github.com/dylanaraps/pywal/archive/{VERSION}.tar.gz" -setup( +setuptools.setup( name="pywal", version=VERSION, author="Dylan Araps",