diff options
Diffstat (limited to 'bot/seasons/halloween/spookygif.py')
| -rw-r--r-- | bot/seasons/halloween/spookygif.py | 2 |
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") |