Exit a context manager for internal httpx.Client (see httpx docs)
(self, *args: Any, **kwargs: Any)
| 97 | return self |
| 98 | |
| 99 | def __exit__(self, *args: Any, **kwargs: Any) -> None: |
| 100 | """Exit a context manager for internal httpx.Client (see httpx docs)""" |
| 101 | self.get_httpx_client().__exit__(*args, **kwargs) |
| 102 | |
| 103 | def set_async_httpx_client(self, async_client: httpx.AsyncClient) -> "Client": |
| 104 | """Manually the underlying httpx.AsyncClient |
no test coverage detected