Skip to content

Commit

Permalink
I guess VerifiedHTTPSConnection is required
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Jun 21, 2021
1 parent d302f57 commit 42531ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/urllib3/connectionpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from socket import timeout as SocketTimeout
from typing import TYPE_CHECKING, Any, Mapping, Optional, Type, Union, overload

from .connection import ( # type: ignore
from .connection import (
BaseSSLError,
BrokenPipeError,
DummyConnection,
Expand All @@ -17,7 +17,7 @@
HTTPException,
HTTPSConnection,
ProxyConfig,
VerifiedHTTPSConnection,
VerifiedHTTPSConnection, # noqa: F401
port_by_scheme,
)
from .exceptions import (
Expand Down

0 comments on commit 42531ef

Please sign in to comment.