diff options
author | 2019-03-30 10:37:59 -0400 | |
---|---|---|
committer | 2019-03-30 10:37:59 -0400 | |
commit | 5fe5b7c688e19e533fe34d98b8c754bc67a58beb (patch) | |
tree | 16c2946f97f85facf6b994b3c48099d369ee7f5a /bot/seasons/evergreen/magic_8ball.py | |
parent | Merge pull request #163 from python-discord/easter_announce (diff) | |
parent | Blank line required between summary line and description. (diff) |
Merge pull request #146 from python-discord/flake8-docstring
Implement flake8-docstrings
Diffstat (limited to 'bot/seasons/evergreen/magic_8ball.py')
-rw-r--r-- | bot/seasons/evergreen/magic_8ball.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py index 88c9fd26..7b5f8e1a 100644 --- a/bot/seasons/evergreen/magic_8ball.py +++ b/bot/seasons/evergreen/magic_8ball.py @@ -9,9 +9,7 @@ log = logging.getLogger(__name__) class Magic8ball: - """ - A Magic 8ball command to respond to a users question. - """ + """A Magic 8ball command to respond to a users question.""" def __init__(self, bot): self.bot = bot @@ -20,9 +18,7 @@ class Magic8ball: @commands.command(name="8ball") async def output_answer(self, ctx, *, question): - """ - Return a magic 8 ball answer from answers list. - """ + """Return a magic 8 ball answer from answers list.""" if len(question.split()) >= 3: answer = random.choice(self.answers) await ctx.send(answer) @@ -30,7 +26,8 @@ class Magic8ball: await ctx.send("Usage: .8ball <question> (minimum length of 3 eg: `will I win?`)") -# Required in order to load the cog, use the class name in the add_cog function. def setup(bot): + """Magic 8ball cog load.""" + bot.add_cog(Magic8ball(bot)) - log.info("Magic 8ball cog loaded") + log.info("Magic8ball cog loaded") |