(
self,
request: httpx.Request,
*,
stream: bool,
**kwargs: Unpack[HttpxSendArgs],
)
| 1562 | return None |
| 1563 | |
| 1564 | async def _send_request( |
| 1565 | self, |
| 1566 | request: httpx.Request, |
| 1567 | *, |
| 1568 | stream: bool, |
| 1569 | **kwargs: Unpack[HttpxSendArgs], |
| 1570 | ) -> httpx.Response: |
| 1571 | return await self._client.send(request, stream=stream, **kwargs) |
| 1572 | |
| 1573 | @overload |
| 1574 | async def request( |