Browse Source
Fix incorrect callback typing for WebsocketHook
pull/9586/head
Imayhaveborkedit
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/voice_state.py
|
|
@ -68,7 +68,7 @@ if TYPE_CHECKING: |
|
|
|
SupportedModes, |
|
|
|
) |
|
|
|
|
|
|
|
WebsocketHook = Optional[Callable[['VoiceConnectionState', Dict[str, Any]], Coroutine[Any, Any, Any]]] |
|
|
|
WebsocketHook = Optional[Callable[[DiscordVoiceWebSocket, Dict[str, Any]], Coroutine[Any, Any, Any]]] |
|
|
|
SocketReaderCallback = Callable[[bytes], Any] |
|
|
|
|
|
|
|
|
|
|
|