diff options
| author | Nadir Chowdhury <[email protected]> | 2021-03-13 05:42:25 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-13 00:42:25 -0500 |
| commit | 7d345e8e4e66246c441a8c6154e398bf49ac0b3c (patch) | |
| tree | 88d643c03a74852b28f9ba17a50d58e5c7cd2d3d /discord/abc.py | |
| parent | Fix references to snowflakes being max 21 long (diff) | |
| download | discord.py-7d345e8e4e66246c441a8c6154e398bf49ac0b3c.tar.xz discord.py-7d345e8e4e66246c441a8c6154e398bf49ac0b3c.zip | |
remove trailing whitespace
Diffstat (limited to 'discord/abc.py')
| -rw-r--r-- | discord/abc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/abc.py b/discord/abc.py index a86a2a2d..be011a64 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -1146,10 +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: |