"""This file contains the MyAnimeList Discord Cog extension. """ import discord from discord.ext import commands class MAL(commands.Cog): def __init__(self, bot): self.bot = bot async def setup(bot): await bot.add_cog(MAL(bot))