Exit a context manager for underlying httpx.AsyncClient (see httpx docs)
(self, *args: Any, **kwargs: Any)
| 264 | return self |
| 265 | |
| 266 | async def __aexit__(self, *args: Any, **kwargs: Any) -> None: |
| 267 | """Exit a context manager for underlying httpx.AsyncClient (see httpx docs)""" |
| 268 | await self.get_async_httpx_client().__aexit__(*args, **kwargs) |
nothing calls this directly
no test coverage detected