aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/evergreen/magic_8ball.py
diff options
context:
space:
mode:
authorGravatar Jeremiah Boby <[email protected]>2019-03-31 16:48:41 +0100
committerGravatar GitHub <[email protected]>2019-03-31 16:48:41 +0100
commit7dfc4a485b89d8e5a7f695bce1f6848ce186d33f (patch)
tree99612627e63ff61e3076cf22e385c37326a5d38e /bot/seasons/evergreen/magic_8ball.py
parentMerge pull request #146 from python-discord/flake8-docstring (diff)
parentBump Easter event 1 day to accommodate April Fools (diff)
Merge pull request #156 from python-discord/hotfix
Cog inheritance hotfix
Diffstat (limited to 'bot/seasons/evergreen/magic_8ball.py')
-rw-r--r--bot/seasons/evergreen/magic_8ball.py4
1 files changed, 2 insertions, 2 deletions
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