Exit a context manager for internal httpx.Client (see httpx docs)
(self, *args: Any, **kwargs: Any)
| 107 | return self |
| 108 | |
| 109 | def __exit__(self, *args: Any, **kwargs: Any) -> None: |
| 110 | """Exit a context manager for internal httpx.Client (see httpx docs)""" |
| 111 | self.get_httpx_client().__exit__(*args, **kwargs) |
| 112 | |
| 113 | def set_async_httpx_client(self, async_client: httpx.AsyncClient) -> "Client": |
| 114 | """Manually the underlying httpx.AsyncClient |
no test coverage detected