diff options
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", ] |
