Skip to content

Commit

Permalink
Merge branch 'feat-improve-request-typing' of https://github.com/max-…
Browse files Browse the repository at this point in the history
…muoto/aiohttp into feat-improve-request-typing
  • Loading branch information
max-muoto committed Jun 15, 2024
2 parents 01d1bd1 + 49d55d8 commit d643ed6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions aiohttp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
Set,
Tuple,
Type,
TypedDict,
TypeVar,
Union,
final,
TypedDict,
)
from typing_extensions import Unpack

from multidict import CIMultiDict, MultiDict, MultiDictProxy, istr
from typing_extensions import Unpack
from yarl import URL

from . import hdrs, http, payload
Expand Down Expand Up @@ -353,9 +353,8 @@ def __init__(

def __init_subclass__(cls: Type["ClientSession"]) -> None:
raise TypeError(
"Inheritance class {} from ClientSession " "is forbidden".format(
cls.__name__
)
"Inheritance class {} from ClientSession "
"is forbidden".format(cls.__name__)
)

def __del__(self, _warnings: Any = warnings) -> None:
Expand Down

0 comments on commit d643ed6

Please sign in to comment.