我正在尝试使用python为我的服务器制造一个不和谐的bot,但是遇到了Traceback错误,并且不确定如何解决。
import discord
from discord.ext import commands
TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
client = commands.Bot(command_prefix="minted ")
@client.event
async def on_ready():
print("we ready boiis")
client.run(TOKEN)