Enter a context manager for underlying httpx.AsyncClient—you cannot enter twice (see httpx docs)
(self)
| 259 | return self._async_client |
| 260 | |
| 261 | async def __aenter__(self) -> "AuthenticatedClient": |
| 262 | """Enter a context manager for underlying httpx.AsyncClient—you cannot enter twice (see httpx docs)""" |
| 263 | await self.get_async_httpx_client().__aenter__() |
| 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)""" |
nothing calls this directly
no test coverage detected