From fefef59820f4b3286da7ce50d6171b03f8598634 Mon Sep 17 00:00:00 2001 From: Shamil Abdulaev <112097588+abdulaev-sh-m@users.noreply.github.com> Date: Tue, 18 Jul 2023 13:26:52 +0300 Subject: [PATCH] fix: Spelling error fixed (#7370) (cherry picked from commit 22c264ce70c9ff45eb2d21a090a874a4ffcdb469) --- aiohttp/payload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/payload.py b/aiohttp/payload.py index a26a8a1f357..ba856693eed 100644 --- a/aiohttp/payload.py +++ b/aiohttp/payload.py @@ -421,7 +421,7 @@ def __init__(self, value: _AsyncIterable, *args: Any, **kwargs: Any) -> None: if not isinstance(value, AsyncIterable): raise TypeError( "value argument must support " - "collections.abc.AsyncIterablebe interface, " + "collections.abc.AsyncIterable interface, " "got {!r}".format(type(value)) )