(
proxy: Proxy,
ws_uri: WebSocketURI,
**kwargs: Any,
)
| 676 | except ImportError: |
| 677 | |
| 678 | async def connect_socks_proxy( |
| 679 | proxy: Proxy, |
| 680 | ws_uri: WebSocketURI, |
| 681 | **kwargs: Any, |
| 682 | ) -> socket.socket: |
| 683 | raise ImportError("connecting through a SOCKS proxy requires python-socks") |
| 684 | |
| 685 | else: |
| 686 | SOCKS_PROXY_TYPES = { |
no test coverage detected
searching dependent graphs…