diff options
| author | Rapptz <[email protected]> | 2021-04-04 04:40:19 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-04-04 07:03:53 -0400 |
| commit | 9d39b135f4f84239787b0901d06a4f370a82d4bb (patch) | |
| tree | 8826845cfd47eafa5c9d2ef1fcbedd36382714f4 /discord/voice_client.py | |
| parent | Bump minimum Python version to 3.8 (diff) | |
| download | discord.py-9d39b135f4f84239787b0901d06a4f370a82d4bb.tar.xz discord.py-9d39b135f4f84239787b0901d06a4f370a82d4bb.zip | |
Modernize code to use f-strings
This also removes the encoding on the top, since Python 3 does it by
default. It also changes some methods to use `yield from`.
Diffstat (limited to 'discord/voice_client.py')
| -rw-r--r-- | discord/voice_client.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/discord/voice_client.py b/discord/voice_client.py index c276c3e4..9a170198 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - """ The MIT License (MIT) @@ -558,7 +556,7 @@ class VoiceClient(VoiceProtocol): raise ClientException('Already playing audio.') if not isinstance(source, AudioSource): - raise TypeError('source must an AudioSource not {0.__class__.__name__}'.format(source)) + raise TypeError(f'source must an AudioSource not {source.__class__.__name__}') if not self.encoder and not source.is_opus(): self.encoder = opus.Encoder() @@ -601,7 +599,7 @@ class VoiceClient(VoiceProtocol): @source.setter def source(self, value): if not isinstance(value, AudioSource): - raise TypeError('expected AudioSource not {0.__class__.__name__}.'.format(value)) + raise TypeError(f'expected AudioSource not {value.__class__.__name__}.') if self._player is None: raise ValueError('Not playing anything.') |