diff options
| -rw-r--r-- | discord/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/utils.py b/discord/utils.py index e5d366ff..d7d23e87 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -197,7 +197,7 @@ def get(iterable, **attrs): .. code-block:: python3 - channel = discord.utils.get(guild.channels, name='Foo', type=ChannelType.voice) + channel = discord.utils.get(guild.voice_channels, name='Foo', bitrate=64000) Nested attribute matching: |