From 55a3685c76ae17cde23d80e17c13fa913bb2aadb Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Wed, 1 Jan 2025 13:05:13 +0100 Subject: [PATCH] Added typing for AsyncServer.instrument() --- typings/socketio/__init__.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/socketio/__init__.pyi b/typings/socketio/__init__.pyi index 59190b9..cb26f36 100644 --- a/typings/socketio/__init__.pyi +++ b/typings/socketio/__init__.pyi @@ -33,6 +33,7 @@ class AsyncServer: async def leave_room(self, sid: str, room: str) -> None: ... def attach(self, app: Any) -> None: ... async def disconnect(self, sid: str) -> None: ... + def instrument(self, auth: dict[str, str]) -> None: ... class AsyncClient: def __init__(self, json: Any = None): ...