aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-03-09 10:21:47 +0100
committerGravatar GitHub <[email protected]>2021-03-09 10:21:47 +0100
commit8b0c1cd3b6729558218bd85aeb660d1975877345 (patch)
treebacf3967df4494c7dbbcc168238aaa4c91501860
parentRestrict the aoc leaderboard commands to december (diff)
Remove useless initialization in the AoC cog
-rw-r--r--bot/exts/christmas/advent_of_code/_cog.py3
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")