aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/halloween/spookygif.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/spookygif.py
parentRemove docstring newline linting from ignored codes (diff)
Relint Seasonalbot with new linting rules
Diffstat (limited to 'bot/seasons/halloween/spookygif.py')
-rw-r--r--bot/seasons/halloween/spookygif.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/bot/seasons/halloween/spookygif.py b/bot/seasons/halloween/spookygif.py
index 37d46c01..ba2ad6e5 100644
--- a/bot/seasons/halloween/spookygif.py
+++ b/bot/seasons/halloween/spookygif.py
@@ -18,7 +18,6 @@ class SpookyGif(commands.Cog):
@commands.command(name="spookygif", aliases=("sgif", "scarygif"))
async def spookygif(self, ctx):
"""Fetches a random gif from the GIPHY API and responds with it."""
-
async with ctx.typing():
async with aiohttp.ClientSession() as session:
params = {'api_key': Tokens.giphy, 'tag': 'halloween', 'rating': 'g'}
@@ -36,6 +35,5 @@ class SpookyGif(commands.Cog):
def setup(bot):
"""Spooky GIF Cog load."""
-
bot.add_cog(SpookyGif(bot))
log.info("SpookyGif cog loaded")