diff options
author | 2019-03-31 14:52:30 +0100 | |
---|---|---|
committer | 2019-03-31 14:52:30 +0100 | |
commit | 7306ca0fb508c5192c47ac5db02ca998f443fc77 (patch) | |
tree | 66958818e906b7245a7f281ef4b7d2b2ed1ba15b | |
parent | Docstring Fixes (diff) |
add `commands.Cog`
-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): |