aboutsummaryrefslogtreecommitdiffstats
path: root/typings
diff options
context:
space:
mode:
Diffstat (limited to 'typings')
-rw-r--r--typings/websocket.pyi5
1 files changed, 4 insertions, 1 deletions
diff --git a/typings/websocket.pyi b/typings/websocket.pyi
index 3e5d683..0f58718 100644
--- a/typings/websocket.pyi
+++ b/typings/websocket.pyi
@@ -55,7 +55,10 @@ class WebSocket:
def ping(self, payload: str = ...) -> None: ...
def recv_data(
self, control_frame: bool
- ) -> tuple[int, Any,]: ...
+ ) -> tuple[
+ int,
+ Any,
+ ]: ...
def close(
self, status: int = STATUS_NORMAL, reason: bytes = b"", timeout: int = 3
) -> None: ...