Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 19, 2023
1 parent c21592f commit 4f844f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aiohttp/connector.py
Expand Up @@ -1174,7 +1174,9 @@ def drop_exception(fut: "asyncio.Future[List[Dict[str, Any]]]") -> None:
host = hinfo["host"]
port = hinfo["port"]

server_hostname = (req.server_hostname or hinfo["hostname"]) if sslcontext else None
server_hostname = (
(req.server_hostname or hinfo["hostname"]) if sslcontext else None
)

try:
transp, proto = await self._wrap_create_connection(
Expand Down

0 comments on commit 4f844f7

Please sign in to comment.