Exit a context manager for internal httpx.Client (see httpx docs)
(self, *args: Any, **kwargs: Any)
| 232 | return self |
| 233 | |
| 234 | def __exit__(self, *args: Any, **kwargs: Any) -> None: |
| 235 | """Exit a context manager for internal httpx.Client (see httpx docs)""" |
| 236 | self.get_httpx_client().__exit__(*args, **kwargs) |
| 237 | |
| 238 | def set_async_httpx_client(self, async_client: httpx.AsyncClient) -> "AuthenticatedClient": |
| 239 | """Manually the underlying httpx.AsyncClient |
nothing calls this directly
no test coverage detected