Skip to content

Commit 990418b

Browse files
committed
Minor typing fix following urllib3 update.
1 parent 6fd8f5f commit 990418b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reader/_parser/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __call__(
9292

9393
error._message = "while reading feed"
9494
yield RetrievedFeed(
95-
response.raw,
95+
cast(IO[bytes], response.raw),
9696
mime_type,
9797
# https://github.com/python/mypy/issues/4976
9898
cast(dict[str, Any] | None, response_caching_info),

0 commit comments

Comments
 (0)