From 5bd0f4155b15adb4aa95c4c7f3fd21c6702ef669 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 28 Aug 2023 22:40:20 +0700 Subject: [PATCH] style: format code with black and isort (#278) Format code with black and isort This commit fixes the style issues introduced in a2bce96 according to the output from Black and isort. Details: None Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> --- misskaty/helper/http.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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), )