diff options
-rw-r--r-- | bot/seasons/halloween/spookyrating.py | 2 |
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): |