from typing import Any from httpx import Response as HTTPXResponse class Response(HTTPXResponse): def json(self, **kwargs: Any) -> Any: ...