aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/evergreen/magic_8ball.py
diff options
context:
space:
mode:
authorGravatar sco1 <[email protected]>2019-04-24 17:20:30 -0400
committerGravatar sco1 <[email protected]>2019-04-24 17:20:30 -0400
commitb611ff92ea69cc1ac6b82aa3f06b9d9675e86a82 (patch)
tree0fdb47359609c44479a331b5684dcb3d50a1ff56 /bot/seasons/evergreen/magic_8ball.py
parentRemove docstring newline linting from ignored codes (diff)
Relint Seasonalbot with new linting rules
Diffstat (limited to 'bot/seasons/evergreen/magic_8ball.py')
-rw-r--r--bot/seasons/evergreen/magic_8ball.py5
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")