diff options
| author | 2019-05-30 20:27:23 -0400 | |
|---|---|---|
| committer | 2019-05-30 20:27:23 -0400 | |
| commit | 484f61b04c0cfa5c02a2047c1f3fc7f34418d212 (patch) | |
| tree | 88258e0b987f9bc31bef53f5afcf90074eb4233b /bot/seasons/evergreen/magic_8ball.py | |
| parent | Merge pull request #211 from RohanRadia/master (diff) | |
| parent | Fix snake draw command (diff) | |
Merge pull request #200 from python-discord/docstring-lint-change
Docstring lint change
Diffstat (limited to 'bot/seasons/evergreen/magic_8ball.py')
| -rw-r--r-- | bot/seasons/evergreen/magic_8ball.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py index 0b4eeb62..9add06af 100644 --- a/bot/seasons/evergreen/magic_8ball.py +++ b/bot/seasons/evergreen/magic_8ball.py @@ -18,7 +18,7 @@ class Magic8ball(commands.Cog): @commands.command(name="8ball") async def output_answer(self, ctx, *, question): - """Return a magic 8 ball answer from answers list.""" + """Return a Magic 8ball answer from answers list.""" if len(question.split()) >= 3: answer = random.choice(self.answers) await ctx.send(answer) @@ -27,7 +27,6 @@ class Magic8ball(commands.Cog): def setup(bot): - """Magic 8ball cog load.""" - + """Magic 8ball Cog load.""" bot.add_cog(Magic8ball(bot)) log.info("Magic8ball cog loaded") |