(self, **_kwargs: Any)
| 1432 | |
| 1433 | class _DefaultAioHttpClient(httpx.AsyncClient): |
| 1434 | def __init__(self, **_kwargs: Any) -> None: |
| 1435 | raise RuntimeError("To use the aiohttp client you must have installed the package with the `aiohttp` extra") |
| 1436 | else: |
| 1437 | |
| 1438 | class _DefaultAioHttpClient(httpx_aiohttp.HttpxAiohttpClient): # type: ignore |