From 7bc72c7aa5f2e7e67e2e4fae57b522f2e5497314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 3 Nov 2021 07:27:41 +0200 Subject: [PATCH] Update aiohttp/helpers.py Co-authored-by: Sviatoslav Sydorenko --- aiohttp/helpers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aiohttp/helpers.py b/aiohttp/helpers.py index 53f76877af2..0a1bf85ea3d 100644 --- a/aiohttp/helpers.py +++ b/aiohttp/helpers.py @@ -424,6 +424,7 @@ def is_expected_content_type( response_content_type: str, expected_content_type: str ) -> bool: """Checks if received content type is processable as an expected one. + Both arguments should be given without parameters. """ if expected_content_type == "application/json":