Browse Source
Allow for callable class factories in abc.Connectable.connect
pull/6483/head
SuzuZusu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
3 deletions
-
discord/abc.py
|
|
@ -1138,9 +1138,6 @@ class Connectable(metaclass=abc.ABCMeta): |
|
|
|
A voice client that is fully connected to the voice server. |
|
|
|
""" |
|
|
|
|
|
|
|
if not issubclass(cls, VoiceProtocol): |
|
|
|
raise TypeError('Type must meet VoiceProtocol abstract base class.') |
|
|
|
|
|
|
|
key_id, _ = self._get_voice_client_key() |
|
|
|
state = self._state |
|
|
|
|
|
|
@ -1149,6 +1146,10 @@ class Connectable(metaclass=abc.ABCMeta): |
|
|
|
|
|
|
|
client = state._get_client() |
|
|
|
voice = cls(client, self) |
|
|
|
|
|
|
|
if not isinstance(voice, VoiceProtocol): |
|
|
|
raise TypeError('Type must meet VoiceProtocol abstract base class.') |
|
|
|
|
|
|
|
state._add_voice_client(key_id, voice) |
|
|
|
|
|
|
|
try: |
|
|
|