aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/halloween/halloweenify.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/halloween/halloweenify.py
parentRemove docstring newline linting from ignored codes (diff)
Relint Seasonalbot with new linting rules
Diffstat (limited to 'bot/seasons/halloween/halloweenify.py')
-rw-r--r--bot/seasons/halloween/halloweenify.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/seasons/halloween/halloweenify.py b/bot/seasons/halloween/halloweenify.py
index ce057889..4d56e2f8 100644
--- a/bot/seasons/halloween/halloweenify.py
+++ b/bot/seasons/halloween/halloweenify.py
@@ -19,8 +19,7 @@ class Halloweenify(commands.Cog):
@commands.cooldown(1, 300, BucketType.user)
@commands.command()
async def halloweenify(self, ctx):
- """Change your nickname into a much spookier one."""
-
+ """Change your nickname into a much spookier one!"""
async with ctx.typing():
with open(Path('bot', 'resources', 'halloween', 'halloweenify.json'), 'r') as f:
data = load(f)
@@ -49,6 +48,5 @@ class Halloweenify(commands.Cog):
def setup(bot):
"""Halloweenify Cog load."""
-
bot.add_cog(Halloweenify(bot))
log.info("Halloweenify cog loaded")