Skip to content

Commit 893ca34

Browse files
committed
Avoid test dependency on typing_extensions
TypedDict was added to the standard library typing module in Python 3.8. Since this project already requires at least Python 3.9, we can rely on this being available.
1 parent aaf2016 commit 893ca34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/protocols/test_websocket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import websockets
1010
import websockets.client
1111
import websockets.exceptions
12-
from typing_extensions import TypedDict
12+
from typing import TypedDict
1313
from websockets.extensions.permessage_deflate import ClientPerMessageDeflateFactory
1414
from websockets.typing import Subprotocol
1515

0 commit comments

Comments
 (0)