Enter a context manager for underlying httpx.AsyncClient—you cannot enter twice (see httpx docs)
(self)
| 123 | return self._async_client |
| 124 | |
| 125 | async def __aenter__(self) -> "Client": |
| 126 | """Enter a context manager for underlying httpx.AsyncClient—you cannot enter twice (see httpx docs)""" |
| 127 | await self.get_async_httpx_client().__aenter__() |
| 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)""" |
no test coverage detected