diff options
author | 2018-10-21 22:57:43 +0530 | |
---|---|---|
committer | 2018-10-21 22:57:43 +0530 | |
commit | 595ea5439ec727285a5e9d9718fa56a24c15e0ff (patch) | |
tree | 668e7a2bc0ec132b3c84b018c10dcf4f87a86455 /bot/cogs | |
parent | Fix issues related to spookyavatar cog. (diff) |
Fix formatting and add docstrings.
Diffstat (limited to 'bot/cogs')
-rw-r--r-- | bot/cogs/spookyavatar.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/spookyavatar.py b/bot/cogs/spookyavatar.py index d06b259a..b11c72ee 100644 --- a/bot/cogs/spookyavatar.py +++ b/bot/cogs/spookyavatar.py @@ -25,7 +25,8 @@ class SpookyAvatar: async with session.get(url) as resp: return await resp.read() - @commands.command(name='savatar', aliases=['spookyavatar', 'spookify'], brief='Spookify an user\'s avatar.') + @commands.command(name='savatar', aliases=['spookyavatar', 'spookify'], + brief='Spookify an user\'s avatar.') async def spookyavatar(self, ctx, user: discord.Member=None): """ A command to print the user's spookified avatar. |