Fix incorrect default value for callback (#13678)

This commit is contained in:
Tim Van Baak
2025-03-20 01:19:06 -07:00
committed by GitHub
parent b943f311ac
commit 506eceb2ee
@@ -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],