summaryrefslogtreecommitdiff
path: root/pywal/__init__.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-22 23:27:43 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-22 23:27:43 +1000
commitd1c2b8023de2585befc5b68e69ed6d0f3ee5d27e (patch)
tree645f8ef6ac7664683d76eef1a56456d8fcf47749 /pywal/__init__.py
parenta84275f1f409e85f873cdbf0caa93c7dc36ff357 (diff)
api: Add function to export individual templates.
Diffstat (limited to 'pywal/__init__.py')
-rw-r--r--pywal/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pywal/__init__.py b/pywal/__init__.py
index ec61c5c..4a850ca 100644
--- a/pywal/__init__.py
+++ b/pywal/__init__.py
@@ -15,13 +15,15 @@ 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 as export_all_templates
+from .template import export_all
+from .template import export
from .wallpaper import change as set_wallpaper
__all__ = [
"__version__",
"create_palette",
- "export_all_templates",
+ "export_all",
+ "export",
"get_image",
"reload_colors",
"reload_env",