summaryrefslogtreecommitdiff
path: root/requests_cache/backends/__init__.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-03-03 19:47:40 -0600
committerJordan Cook <jordan.cook@pioneer.com>2021-03-04 22:17:21 -0600
commit0f03e68b9840caf4bf40321cd3110347034fddd5 (patch)
tree28b72bf7a4756e1f426ff9ab76bdb9e719573286 /requests_cache/backends/__init__.py
parentbfe214eedeb728b1e8899460a5bdde5590fc34ae (diff)
downloadrequests-cache-0f03e68b9840caf4bf40321cd3110347034fddd5.tar.gz
Refactor CachedSession to be usable as a mixin class
Diffstat (limited to 'requests_cache/backends/__init__.py')
-rw-r--r--requests_cache/backends/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/requests_cache/backends/__init__.py b/requests_cache/backends/__init__.py
index 82fb5e1..66df84f 100644
--- a/requests_cache/backends/__init__.py
+++ b/requests_cache/backends/__init__.py
@@ -7,7 +7,7 @@
"""
-from .base import BaseCache
+from .base import BACKEND_KWARGS, BaseCache
registry = {
'memory': BaseCache,