aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/halloween/spookygif.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/seasons/halloween/spookygif.py')
-rw-r--r--bot/seasons/halloween/spookygif.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/bot/seasons/halloween/spookygif.py b/bot/seasons/halloween/spookygif.py
index c11d5ecb..37d46c01 100644
--- a/bot/seasons/halloween/spookygif.py
+++ b/bot/seasons/halloween/spookygif.py
@@ -10,18 +10,14 @@ log = logging.getLogger(__name__)
class SpookyGif(commands.Cog):
- """
- A cog to fetch a random spooky gif from the web!
- """
+ """A cog to fetch a random spooky gif from the web!"""
def __init__(self, bot):
self.bot = bot
@commands.command(name="spookygif", aliases=("sgif", "scarygif"))
async def spookygif(self, ctx):
- """
- Fetches a random gif from the GIPHY API and responds with it.
- """
+ """Fetches a random gif from the GIPHY API and responds with it."""
async with ctx.typing():
async with aiohttp.ClientSession() as session:
@@ -39,5 +35,7 @@ class SpookyGif(commands.Cog):
def setup(bot):
+ """Spooky GIF Cog load."""
+
bot.add_cog(SpookyGif(bot))
log.info("SpookyGif cog loaded")