Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JWCook committed Jan 1, 2022
1 parent 023b9bf commit e58f491
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requests_cache/backends/base.py
Expand Up @@ -88,8 +88,8 @@ def save_response(self, response: AnyResponse, cache_key: str = None, expires: d
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)
Expand Down

0 comments on commit e58f491

Please sign in to comment.