import typing from cogs.information.interactions import InfoCommands from utils.classes import BaseCog if typing.TYPE_CHECKING: from bot import TuneBot class InformationCog(BaseCog, name="Information"): pass async def setup(bot: "TuneBot"): bot.remove_command("help") await bot.add_cog(InformationCog(bot)) bot.tree.add_command(InfoCommands(bot), override=True)