File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 11from typing import Any , Generic , Literal
22
3- from _typeshed import Incomplete
43from socketio .base_client import BaseClient
54from socketio .base_server import BaseServer
65from typing_extensions import TypeVar
@@ -15,7 +14,7 @@ class BaseNamespace(Generic[_IsAsyncio]):
1514class BaseServerNamespace (BaseNamespace [_IsAsyncio ], Generic [_IsAsyncio ]):
1615 server : BaseServer [_IsAsyncio , Any ] | None
1716 def __init__ (self , namespace : str | None = ...) -> None : ...
18- def rooms (self , sid : str , namespace : str | None = ...) -> Incomplete : ...
17+ def rooms (self , sid : str , namespace : str | None = ...) -> list [ str ] : ...
1918 def _set_server (self , server : BaseServer [_IsAsyncio , Any ]) -> None : ...
2019
2120class BaseClientNamespace (BaseNamespace [_IsAsyncio ], Generic [_IsAsyncio ]):
You can’t perform that action at this time.
0 commit comments