summaryrefslogtreecommitdiff
path: root/requests_cache/serializers
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-02-02 12:25:24 -0600
committerJordan Cook <jordan.cook@pioneer.com>2022-02-02 12:51:26 -0600
commit6faa065d0ab80c9c37f4a94eaed6c41682f360fe (patch)
treef59afd2235fec3b9e9c9b2bb20554b6344e0918b /requests_cache/serializers
parentd9419964120226cf63ee08e6434609c39f70856c (diff)
downloadrequests-cache-6faa065d0ab80c9c37f4a94eaed6c41682f360fe.tar.gz
Update to mypy v0.931 and add some ignores/workarounds for new false positives
Diffstat (limited to 'requests_cache/serializers')
-rw-r--r--requests_cache/serializers/cattrs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/requests_cache/serializers/cattrs.py b/requests_cache/serializers/cattrs.py
index 7652cad..e0bde94 100644
--- a/requests_cache/serializers/cattrs.py
+++ b/requests_cache/serializers/cattrs.py
@@ -17,7 +17,7 @@ from typing import Callable, Dict, ForwardRef, MutableMapping
from cattr import GenConverter
from requests.cookies import RequestsCookieJar, cookiejar_from_dict
from requests.structures import CaseInsensitiveDict
-from urllib3.response import HTTPHeaderDict
+from urllib3._collections import HTTPHeaderDict
from ..models import CachedResponse
from .pipeline import Stage