summaryrefslogtreecommitdiff
path: root/lib/utils/cache.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-08-21 20:32:50 -0400
committerLex Neva <github.com@lexneva.name>2018-08-21 20:32:50 -0400
commit038875f876d79d0f1e971886fe42f5bee4f9f31e (patch)
tree296c60d3b490f988802f9bec884eed32dcbf9c0c /lib/utils/cache.py
parentf26042f477f1520443b1d9dad0bb88ef3ad7ca47 (diff)
autopep8
Diffstat (limited to 'lib/utils/cache.py')
-rw-r--r--lib/utils/cache.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/utils/cache.py b/lib/utils/cache.py
index 38fe8f2c..3a2636f2 100644
--- a/lib/utils/cache.py
+++ b/lib/utils/cache.py
@@ -4,5 +4,7 @@ except ImportError:
from backports.functools_lru_cache import lru_cache
# simplify use of lru_cache decorator
+
+
def cache(*args, **kwargs):
return lru_cache(maxsize=None)(*args, **kwargs)