def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" bot.add_cog(Math(bot))
def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" bot.add_cog(Documentation(bot))
def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" from ._cog import Python bot.add_cog(Python(bot))
def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" importlib.reload(_meme_generator) from ._cog import Memes bot.add_cog(Memes(bot))
def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" importlib.reload(kaa_help) bot.add_cog(Help(bot))
def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" bot.add_cog(CommandErrorHandler(bot))
def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" from ._cog import Games bot.add_cog(Games(bot))
def setup(bot: Kaa) -> None: """function the bot uses to load this extension""" from ._cog import Code importlib.reload(_codeformatter) bot.add_cog(Code(bot))