Exit a context manager for underlying httpx.AsyncClient (see httpx docs)
(self, *args: Any, **kwargs: Any)
| 138 | return self |
| 139 | |
| 140 | async def __aexit__(self, *args: Any, **kwargs: Any) -> None: |
| 141 | """Exit a context manager for underlying httpx.AsyncClient (see httpx docs)""" |
| 142 | await self.get_async_httpx_client().__aexit__(*args, **kwargs) |
| 143 | |
| 144 | |
| 145 | @define |
no test coverage detected