(
self,
request: httpx.Request,
*,
stream: bool,
**kwargs: Unpack[HttpxSendArgs],
)
| 955 | return None |
| 956 | |
| 957 | def _send_request( |
| 958 | self, |
| 959 | request: httpx.Request, |
| 960 | *, |
| 961 | stream: bool, |
| 962 | **kwargs: Unpack[HttpxSendArgs], |
| 963 | ) -> httpx.Response: |
| 964 | return self._client.send(request, stream=stream, **kwargs) |
| 965 | |
| 966 | @overload |
| 967 | def request( |