We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70144f5 commit c1c8a3bCopy full SHA for c1c8a3b
slack_sdk/socket_mode/websockets/__init__.py
@@ -14,7 +14,9 @@
14
15
import websockets
16
from websockets.exceptions import WebSocketException
17
-from websockets.legacy.client import WebSocketClientProtocol
+
18
+# To keep compatibility with websockets 8.x, we use this import over .legacy.client
19
+from websockets import WebSocketClientProtocol
20
21
from slack_sdk.socket_mode.async_client import AsyncBaseSocketModeClient
22
from slack_sdk.socket_mode.async_listeners import (
0 commit comments