summaryrefslogtreecommitdiff
path: root/requests_cache/backends/sqlite.py
diff options
context:
space:
mode:
Diffstat (limited to 'requests_cache/backends/sqlite.py')
-rw-r--r--requests_cache/backends/sqlite.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/requests_cache/backends/sqlite.py b/requests_cache/backends/sqlite.py
index b07aaa8..83bab79 100644
--- a/requests_cache/backends/sqlite.py
+++ b/requests_cache/backends/sqlite.py
@@ -16,11 +16,11 @@ class DbCache(BaseCache):
Reading is fast, saving is a bit slower. It can store big amount of data
with low memory usage.
"""
- def __init__(self, location='cache', *args, **kwargs):
+ def __init__(self, location='cache', **options):
"""
:param location: database filename prefix (default: ``'cache'``)
"""
- super(DbCache, self).__init__(*args, **kwargs)
+ super(DbCache, self).__init__()
self.responses = DbPickleDict(location, 'responses')
self.url_map = DbDict(location, 'urls', self.responses)