Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
1ntegrale9 committed Dec 6, 2023
1 parent 8100e76 commit f263628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daug/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def get_channel_members(channel: discord.TextChannel | discord.VoiceChannel):
if channel.type is discord.TextChannel:
if type(channel) is discord.TextChannel:
return channel.members
members = set()
for target, overwrite in channel.overwrites.items():
Expand Down

0 comments on commit f263628

Please sign in to comment.