1import httpx 2 3class AsyncClient(httpx.AsyncClient): 4 def __init__(self, *args, **kwargs): 5 super().__init__(*args, **kwargs) 6 7 def _merge_cookies(self, cookies: dict): 8 """Don't save the cookies in the client.""" 9 return cookies 10