Browse Source

Fix signature for VoiceClient

pull/7494/head
Rapptz 3 years ago
parent
commit
3e90664cf9
  1. 2
      discord/voice_client.py

2
discord/voice_client.py

@ -232,7 +232,7 @@ class VoiceClient(VoiceProtocol):
secret_key: List[int] secret_key: List[int]
ssrc: int ssrc: int
def __init__(self, client: Client, channel: VocalGuildChannel): def __init__(self, client: Client, channel: abc.Connectable):
if not has_nacl: if not has_nacl:
raise RuntimeError("PyNaCl library needed in order to use voice") raise RuntimeError("PyNaCl library needed in order to use voice")

Loading…
Cancel
Save