summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--requests_cache/backends/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/requests_cache/backends/base.py b/requests_cache/backends/base.py
index ddd47e7..6714bcb 100644
--- a/requests_cache/backends/base.py
+++ b/requests_cache/backends/base.py
@@ -88,8 +88,8 @@ class BaseCache:
Args:
cache_key: Cache key for this response; will otherwise be generated based on request
- response: response to save
- expire_after: Time in seconds until this cache item should expire
+ response: Response to save
+ expires: Absolute expiration time for this response
"""
cache_key = cache_key or self.create_key(response.request)
cached_response = CachedResponse.from_response(response, expires=expires)