Skip to content

Commit

Permalink
Merge pull request #3308 from TnTomato/fix-WebSocketClientConnection-…
Browse files Browse the repository at this point in the history
…parameter

Fix WebSocketClientConnection parameter
  • Loading branch information
bdarnell committed Sep 2, 2023
2 parents 95821a1 + d850248 commit a48d634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tornado/websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ def __init__(
ping_interval: Optional[float] = None,
ping_timeout: Optional[float] = None,
max_message_size: int = _default_max_message_size,
subprotocols: Optional[List[str]] = [],
subprotocols: Optional[List[str]] = None,
resolver: Optional[Resolver] = None,
) -> None:
self.connect_future = Future() # type: Future[WebSocketClientConnection]
Expand Down

0 comments on commit a48d634

Please sign in to comment.