aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/halloween/hacktoberstats.py
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2020-11-14 22:56:36 +0100
committerGravatar GitHub <[email protected]>2020-11-14 22:56:36 +0100
commit4ed015aae21045876761284902c337da724b81eb (patch)
tree9bcc70435c2554c96de0c48376fae3af6b9816a7 /bot/exts/halloween/hacktoberstats.py
parentFix typo in GitHub workflow (diff)
parentRemove make_persistent import from bot extensions (diff)
Merge pull request #515 from python-discord/feature/non-persistence
Remove persistence requirements from Seasonalbot
Diffstat (limited to 'bot/exts/halloween/hacktoberstats.py')
-rw-r--r--bot/exts/halloween/hacktoberstats.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py
index d2762513..beff86e3 100644
--- a/bot/exts/halloween/hacktoberstats.py
+++ b/bot/exts/halloween/hacktoberstats.py
@@ -12,7 +12,9 @@ from discord.ext import commands
from bot.constants import Channels, Month, Tokens, WHITELISTED_CHANNELS
from bot.utils.decorators import in_month, override_in_channel
-from bot.utils.persist import make_persistent
+
+# TODO: Implement substitutes for volume-persistent methods.
+# from bot.utils.persist import make_persistent
log = logging.getLogger(__name__)
@@ -489,4 +491,3 @@ class HacktoberStats(commands.Cog):
def setup(bot: commands.Bot) -> None:
"""Hacktoberstats Cog load."""
- bot.add_cog(HacktoberStats(bot))