这可能是一个愚蠢的问题,但是...如何为齿轮添加描述?
目前我正在为我的机器人制作一个自定义帮助命令,因为它仍在开发中,我肯定会向它添加更多的齿轮,它会让我的生活更轻松,只有齿轮描述!
在 discord.py 文档中,对象 cog 具有执行以下操作的属性描述:
我就是无法理解!我做了一些研究,但我找不到任何关于齿轮描述的例子。
所以这是一个简单的齿轮:
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))
我如何为其添加描述?