Exit a context manager for underlying httpx.AsyncClient (see httpx docs)
(self, *args: Any, **kwargs: Any)
| 128 | return self |
| 129 | |
| 130 | async def __aexit__(self, *args: Any, **kwargs: Any) -> None: |
| 131 | """Exit a context manager for underlying httpx.AsyncClient (see httpx docs)""" |
| 132 | await self.get_async_httpx_client().__aexit__(*args, **kwargs) |
| 133 | |
| 134 | |
| 135 | @define |
no test coverage detected