* Update urllib3.py
Drop `proxy` argument that has been accidentally left over on `URLLib3Transport`.
It's not used anywhere, and it's not relevant since we seperate `URLLib3Transport` and `URLLib3ProxyTransport` classes.
* Update urllib3.py
import httpcore
-from .._config import Proxy, SSLConfig
+from .._config import SSLConfig
from .._content_streams import ByteStream, IteratorStream
from .._exceptions import NetworkError, map_exceptions
from .._types import CertTypes, VerifyTypes
def __init__(
self,
*,
- proxy: Proxy = None,
verify: VerifyTypes = True,
cert: CertTypes = None,
trust_env: bool = None,