Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add and use ClientConnectionResetError #9137

Merged
merged 18 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update client_exceptions.py
  • Loading branch information
Dreamsorcerer committed Sep 13, 2024
commit c988441aff28aac5a7f2edd81f8104de3324591b
4 changes: 2 additions & 2 deletions aiohttp/client_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

from multidict import MultiMapping

from .http_parser import RawResponseMessage
from .typedefs import StrOrURL

try:
Expand All @@ -18,8 +17,9 @@

if TYPE_CHECKING:
from .client_reqrep import ClientResponse, ConnectionKey, Fingerprint, RequestInfo
from .http_parser import RawResponseMessage
else:
RequestInfo = ClientResponse = ConnectionKey = None
RequestInfo = ClientResponse = ConnectionKey = RawResponseMessage = None

__all__ = (
"ClientError",
Expand Down
Loading