如何向齿轮添加描述?

时间:2021-07-31 22:16:13

标签: python discord.py

这可能是一个愚蠢的问题,但是...如何为齿轮添加描述?

目前我正在为我的机器人制作一个自定义帮助命令,因为它仍在开发中,我肯定会向它添加更多的齿轮,它会让我的生活更轻松,只有齿轮描述!

在 discord.py 文档中,对象 cog 具有执行以下操作的属性描述:

enter image description here

我就是无法理解!我做了一些研究,但我找不到任何关于齿轮描述的例子。

所以这是一个简单的齿轮:

import discord
from discord.ext import commands

class Funny(commands.cog):

    def __init__(self, bot):
        self.bot = bot

    @commands.command()
    async def funnyImage(ctx):
        await ctx.send(file=discord.File('memes/funnyImage.png'))

def setup(bot):
    bot.add_cog(Imagens(bot))

我如何为其添加描述?

1 个答案:

答案 0 :(得分:1)

我快速浏览了文档,发现了以下内容:

Screenshot from discord.py

我现在无法测试它,但看起来您必须直接将其传递给类定义,例如class MyCog(commands.Cog, description="Hello"):