diff options
| author | 2019-04-24 17:20:30 -0400 | |
|---|---|---|
| committer | 2019-04-24 17:20:30 -0400 | |
| commit | b611ff92ea69cc1ac6b82aa3f06b9d9675e86a82 (patch) | |
| tree | 0fdb47359609c44479a331b5684dcb3d50a1ff56 /bot/seasons/halloween/halloweenify.py | |
| parent | Remove 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.py | 4 |
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") |