我正在尝试使用await self.client.session.get()
启动机器人时,它不会发送错误,但是当我运行命令时,它会发送discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Bot' object has no attribute 'session'
有人知道我该如何解决吗?我一直在寻找自己,self.client.session.get()
对他们来说很好
答案 0 :(得分:0)
就像错误提示一样,discord.ext.commands.Bot
没有session
属性。
我不确定“谁”是谁,但是他们很可能使用具有该属性的自定义Bot
子类。