diff options
author | 2021-03-02 16:00:24 +0530 | |
---|---|---|
committer | 2021-03-02 16:00:24 +0530 | |
commit | 674838787fb1916dce98b50bae78159a54833c42 (patch) | |
tree | 0be5f6921501defb5c63d29f09ff742b8c5ac43f /bot/bot.py | |
parent | Fix Channel Check to use channel ids instead of channel objects, and skip cha... (diff) |
Don't use sets
Diffstat (limited to 'bot/bot.py')
-rw-r--r-- | bot/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -79,7 +79,7 @@ class Bot(commands.Bot): log.info("Skipping Channels Check.") return - all_channels_ids = [channel.id for channel in set(self.get_all_channels())] + all_channels_ids = [channel.id for channel in self.get_all_channels()] for name, channel_id in vars(constants.Channels).items(): if name.startswith('_'): continue |