diff options
| author | 2021-03-09 10:21:47 +0100 | |
|---|---|---|
| committer | 2021-03-09 10:21:47 +0100 | |
| commit | 8b0c1cd3b6729558218bd85aeb660d1975877345 (patch) | |
| tree | bacf3967df4494c7dbbcc168238aaa4c91501860 /bot/exts | |
| parent | Restrict the aoc leaderboard commands to december (diff) | |
Remove useless initialization in the AoC cog
Diffstat (limited to 'bot/exts')
| -rw-r--r-- | bot/exts/christmas/advent_of_code/_cog.py | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/bot/exts/christmas/advent_of_code/_cog.py b/bot/exts/christmas/advent_of_code/_cog.py index c86ce18a..29902306 100644 --- a/bot/exts/christmas/advent_of_code/_cog.py +++ b/bot/exts/christmas/advent_of_code/_cog.py @@ -36,9 +36,6 @@ class AdventOfCode(commands.Cog):          self.about_aoc_filepath = Path("./bot/resources/advent_of_code/about.json")          self.cached_about_aoc = self._build_about_embed() -        self.notification_task = None -        self.status_task = None -          notification_coro = _helpers.new_puzzle_notification(self.bot)          self.notification_task = self.bot.loop.create_task(notification_coro)          self.notification_task.set_name("Daily AoC Notification")  |