Skip to content

Commit

Permalink
Silence type error
Browse files Browse the repository at this point in the history
  • Loading branch information
johtso committed Aug 23, 2023
1 parent ef9bc84 commit 5147fba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion httpx_caching/_async/_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async def _io_make_request(self, action: protocol.MakeRequest) -> Response:
status_code=response.status_code,
headers=response.headers,
stream=response.stream, # type: ignore
extensions=response.extensions,
extensions=response.extensions, # type: ignore
)

@aio_handler.register
Expand Down
2 changes: 1 addition & 1 deletion httpx_caching/_sync/_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _io_make_request(self, action: protocol.MakeRequest) -> Response:
status_code=response.status_code,
headers=response.headers,
stream=response.stream, # type: ignore
extensions=response.extensions,
extensions=response.extensions, # type: ignore
)

@io_handler.register
Expand Down

0 comments on commit 5147fba

Please sign in to comment.