aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Suhail <[email protected]>2019-03-31 14:52:30 +0100
committerGravatar Suhail <[email protected]>2019-03-31 14:52:30 +0100
commit7306ca0fb508c5192c47ac5db02ca998f443fc77 (patch)
tree66958818e906b7245a7f281ef4b7d2b2ed1ba15b
parentDocstring Fixes (diff)
add `commands.Cog`
-rw-r--r--bot/seasons/halloween/spookyrating.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/halloween/spookyrating.py b/bot/seasons/halloween/spookyrating.py
index 01fb607b..a9cfda9b 100644
--- a/bot/seasons/halloween/spookyrating.py
+++ b/bot/seasons/halloween/spookyrating.py
@@ -16,7 +16,7 @@ with Path('bot', 'resources', 'halloween', 'spooky_rating.json').open() as file:
SPOOKY_DATA = sorted((int(key), value) for key, value in SPOOKY_DATA.items())
-class SpookyRating:
+class SpookyRating(commands.Cog):
"""A cog for calculating one's spooky rating"""
def __init__(self, bot):