功能已定义的线Discord Bot

时间:2020-01-22 16:08:28

标签: python discord discord.py-rewrite

@client.command()
async def kick(ctx, member: discord.Member, *, reason=None):
    await member.kick(reason=reason)
    await ctx.send(f"{member.mention} got kicked :cry:")
    await ctx.send("https://giphy.com/gifs/warnerarchive-warner-archive-blaxploitation-melinda-l3V0j3ytFyGHqiV7W")

@kick.error
async def on_command_error(ctx, error):
    if isinstance(error, commands.MissingRequiredArgument):
        await ctx.send("incorrect command")

这是我的kick函数代码,并且出现此错误“函数已定义”。当我在Visual Studio中运行该程序时,代码可以完美运行,但是我收到此错误。

0 个答案:

没有答案