From f96282298e7655d04dffcc4f3a245d2e2b6909ba Mon Sep 17 00:00:00 2001 From: dolfies Date: Tue, 18 Jan 2022 17:18:07 -0500 Subject: [PATCH] type ignore aiohttp monkeypatch --- discord/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/http.py b/discord/http.py index 089a53357..9ced6333d 100644 --- a/discord/http.py +++ b/discord/http.py @@ -104,7 +104,7 @@ async def json_or_text(response: aiohttp.ClientResponse) -> Union[Dict[str, Any] def _gen_accept_encoding_header(): - return 'gzip, deflate, br' if aiohttp.http_parser.HAS_BROTLI else 'gzip, deflate' + return 'gzip, deflate, br' if aiohttp.http_parser.HAS_BROTLI else 'gzip, deflate' # type: ignore class Route: