aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeviantfero <[email protected]>2018-02-04 04:05:45 -0600
committerdeviantfero <[email protected]>2018-02-04 04:10:19 -0600
commit9a7e1d9f7f1e8441aed7c66fc97147eaf35b0684 (patch)
tree76d5e14d49e5ff0859d83e9c91110dda597dfa31
parentgeneral: change template_version for more appropriate name cache_version (diff)
downloadpywal-9a7e1d9f7f1e8441aed7c66fc97147eaf35b0684.tar.xz
pywal-9a7e1d9f7f1e8441aed7c66fc97147eaf35b0684.zip
hotfix: add missing comma, remove unused import
-rw-r--r--pywal/__init__.py2
-rw-r--r--pywal/__main__.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/pywal/__init__.py b/pywal/__init__.py
index 67ec55f..09b9e8b 100644
--- a/pywal/__init__.py
+++ b/pywal/__init__.py
@@ -19,7 +19,7 @@ from . import wallpaper
__all__ = [
"__version__",
- "__chache_version__"
+ "__chache_version__",
"colors",
"export",
"image",
diff --git a/pywal/__main__.py b/pywal/__main__.py
index 69fa70d..7c0bf06 100644
--- a/pywal/__main__.py
+++ b/pywal/__main__.py
@@ -15,7 +15,6 @@ import shutil
import sys
from .settings import __version__, CACHE_DIR
-from .settings import __chache_version__
from . import colors
from . import export
from . import image