diff options
Diffstat (limited to 'bot/seasons/evergreen')
| -rw-r--r-- | bot/seasons/evergreen/error_handler.py | 2 | ||||
| -rw-r--r-- | bot/seasons/evergreen/fun.py | 2 | ||||
| -rw-r--r-- | bot/seasons/evergreen/magic_8ball.py | 4 | ||||
| -rw-r--r-- | bot/seasons/evergreen/uptime.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/bot/seasons/evergreen/error_handler.py b/bot/seasons/evergreen/error_handler.py index b0d05c41..26afe814 100644 --- a/bot/seasons/evergreen/error_handler.py +++ b/bot/seasons/evergreen/error_handler.py @@ -8,7 +8,7 @@ from discord.ext import commands log = logging.getLogger(__name__)
-class CommandErrorHandler:
+class CommandErrorHandler(commands.Cog):
"""A error handler for the PythonDiscord server."""
def __init__(self, bot):
diff --git a/bot/seasons/evergreen/fun.py b/bot/seasons/evergreen/fun.py index 286d8462..05cf504e 100644 --- a/bot/seasons/evergreen/fun.py +++ b/bot/seasons/evergreen/fun.py @@ -8,7 +8,7 @@ from bot.constants import Emojis log = logging.getLogger(__name__) -class Fun: +class Fun(commands.Cog): """A collection of general commands for fun.""" def __init__(self, bot): diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py index 7b5f8e1a..0b4eeb62 100644 --- a/bot/seasons/evergreen/magic_8ball.py +++ b/bot/seasons/evergreen/magic_8ball.py @@ -8,8 +8,8 @@ from discord.ext import commands log = logging.getLogger(__name__) -class Magic8ball: - """A Magic 8ball command to respond to a users question.""" +class Magic8ball(commands.Cog): + """A Magic 8ball command to respond to a user's question.""" def __init__(self, bot): self.bot = bot diff --git a/bot/seasons/evergreen/uptime.py b/bot/seasons/evergreen/uptime.py index 4d5ac584..32c2b59d 100644 --- a/bot/seasons/evergreen/uptime.py +++ b/bot/seasons/evergreen/uptime.py @@ -9,7 +9,7 @@ from bot import start_time log = logging.getLogger(__name__) -class Uptime: +class Uptime(commands.Cog): """A cog for posting the bot's uptime.""" def __init__(self, bot): |