Exit a context manager for internal httpx.Client (see httpx docs)
(self, *args: Any, **kwargs: Any)
| 122 | return self |
| 123 | |
| 124 | def __exit__(self, *args: Any, **kwargs: Any) -> None: |
| 125 | """Exit a context manager for internal httpx.Client (see httpx docs)""" |
| 126 | self.get_httpx_client().__exit__(*args, **kwargs) |
| 127 | |
| 128 | def set_async_httpx_client(self, async_client: httpx.AsyncClient) -> "HTTPClient": |
| 129 | """Manually the underlying httpx.AsyncClient |
no test coverage detected