diff --git a/misskaty/helper/http.py b/misskaty/helper/http.py index a824a53f..e139c885 100644 --- a/misskaty/helper/http.py +++ b/misskaty/helper/http.py @@ -10,7 +10,10 @@ session = ClientSession() fetch = httpx.AsyncClient( http2=True, verify=False, - headers={"Accept-Language": "id-ID", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edge/107.0.1418.42"}, + headers={ + "Accept-Language": "id-ID", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edge/107.0.1418.42", + }, timeout=httpx.Timeout(10), )