diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 10:57:33 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 10:57:33 +1000 |
| commit | 377cc7e68ce2576ad928fdd6efb40cabdf0f19dc (patch) | |
| tree | 43fa2d6c67fab5d46b3fb8e170ba0aa36913054d /pywal/__init__.py | |
| parent | bd5611e35cba2cfa0a57f3f854ed157638da3c95 (diff) | |
api: Changed export arguments.
Diffstat (limited to 'pywal/__init__.py')
| -rw-r--r-- | pywal/__init__.py | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/pywal/__init__.py b/pywal/__init__.py index 4a850ca..e9c0603 100644 --- a/pywal/__init__.py +++ b/pywal/__init__.py @@ -10,23 +10,19 @@ Created by Dylan Araps. """ from .settings import __version__ -from .colors import get as create_palette -from .image import get as get_image -from .reload import colors as reload_colors -from .reload import env as reload_env -from .sequences import send as send_sequences -from .template import export_all -from .template import export -from .wallpaper import change as set_wallpaper +from . import colors +from . import export +from . import image +from . import reload +from . import sequences +from . import wallpaper __all__ = [ "__version__", - "create_palette", - "export_all", + "colors", "export", - "get_image", - "reload_colors", - "reload_env", - "send_sequences", - "set_wallpaper", + "image", + "reload", + "sequences", + "wallpaper", ] |
