From 4bed6fada0121072e92f72d5b198ae64d31c6112 Mon Sep 17 00:00:00 2001 From: Shamil Abdulaev <112097588+abdulaev-sh-m@users.noreply.github.com> Date: Sun, 16 Jul 2023 21:38:50 +0300 Subject: [PATCH] fix: Spelling error fixed --- aiohttp/payload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/payload.py b/aiohttp/payload.py index de08a293346..11f3f2db7b0 100644 --- a/aiohttp/payload.py +++ b/aiohttp/payload.py @@ -416,7 +416,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)) )