mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 20:28:38 +00:00
Check for None in VocalGuildChannel.voice_states
This commit is contained in:
parent
6f3b8072d6
commit
ea1d423904
@ -820,7 +820,13 @@ class VocalGuildChannel(discord.abc.Connectable, discord.abc.GuildChannel, Hasha
|
|||||||
Mapping[:class:`int`, :class:`VoiceState`]
|
Mapping[:class:`int`, :class:`VoiceState`]
|
||||||
The mapping of member ID to a voice state.
|
The mapping of member ID to a voice state.
|
||||||
"""
|
"""
|
||||||
return {key: value for key, value in self.guild._voice_states.items() if value.channel.id == self.id}
|
# fmt: off
|
||||||
|
return {
|
||||||
|
key: value
|
||||||
|
for key, value in self.guild._voice_states.items()
|
||||||
|
if value.channel and value.channel.id == self.id
|
||||||
|
}
|
||||||
|
# fmt: on
|
||||||
|
|
||||||
@utils.copy_doc(discord.abc.GuildChannel.permissions_for)
|
@utils.copy_doc(discord.abc.GuildChannel.permissions_for)
|
||||||
def permissions_for(self, obj: Union[Member, Role], /) -> Permissions:
|
def permissions_for(self, obj: Union[Member, Role], /) -> Permissions:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user