diff options
Diffstat (limited to 'bot/seasons/halloween/spookygif.py')
| -rw-r--r-- | bot/seasons/halloween/spookygif.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/bot/seasons/halloween/spookygif.py b/bot/seasons/halloween/spookygif.py index c11d5ecb..ce8aef06 100644 --- a/bot/seasons/halloween/spookygif.py +++ b/bot/seasons/halloween/spookygif.py @@ -9,19 +9,15 @@ from bot.constants import Tokens log = logging.getLogger(__name__) -class SpookyGif(commands.Cog): - """ - A cog to fetch a random spooky gif from the web! - """ +class SpookyGif: + """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") |