mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 14:00:12 +08:00
Fix incorrect default value for callback (#13678)
This commit is contained in:
@@ -29,7 +29,7 @@ class SocketIOTestClient:
|
||||
auth: dict[str, Incomplete] | None = None,
|
||||
) -> None: ...
|
||||
def disconnect(self, namespace: str | None = None) -> None: ...
|
||||
def emit(self, event: str, *args, callback: bool = True, namespace: str | None = None) -> Incomplete | None: ...
|
||||
def emit(self, event: str, *args, callback: bool = False, namespace: str | None = None) -> Incomplete | None: ...
|
||||
def send(
|
||||
self,
|
||||
data: str | dict[str, Incomplete] | list[Incomplete],
|
||||
|
||||
Reference in New Issue
Block a user