from typing import Dict from discord.ext.commands import Cog from bot import ChristmasBot class BaseCog(Cog): def __init__(self, bot: ChristmasBot) -> None: self.bot = bot slash_descriptions: Dict[str, str] = self.bot.config["slash_descriptions"] for command in self.walk_commands(): if brief := slash_descriptions.get(command.qualified_name): command.brief = brief