diff options
author | 2021-10-08 12:06:56 -0700 | |
---|---|---|
committer | 2021-10-08 12:06:56 -0700 | |
commit | be870677f74461265d12eeeff7b0de6c4b3e99a7 (patch) | |
tree | f8253973da15069bf258c5e7ec3ed2cd2e42a630 | |
parent | Remove unnecessary `else` (diff) | |
parent | Merge pull request #893 from python-discord/bug/candy-collection/fix-typeerro... (diff) |
Merge branch 'main' into topic-improvements
-rw-r--r-- | bot/exts/holidays/halloween/candy_collection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/holidays/halloween/candy_collection.py b/bot/exts/holidays/halloween/candy_collection.py index 4afd5913..09bd0e59 100644 --- a/bot/exts/holidays/halloween/candy_collection.py +++ b/bot/exts/holidays/halloween/candy_collection.py @@ -134,7 +134,7 @@ class CandyCollection(commands.Cog): @property def hacktober_channel(self) -> discord.TextChannel: """Get #hacktoberbot channel from its ID.""" - return self.bot.get_channel(id=Channels.community_bot_commands) + return self.bot.get_channel(Channels.community_bot_commands) @staticmethod async def send_spook_msg( |