我需要帮助让我的机器人工作
# Import Discord Package
import discord
# Client (our bot)
client = discord.Client()
@client.event
async def on_ready():
# DO STUFF....
general_channel = client.get_channel()
await general_channel.send('yo')
# Run the client on the server
client.run('')
当我运行它时,我得到了AttributeError:'NoneType‘对象在终端中没有'send’属性,如果你能修复它,就不会出现任何不一致的情况
发布于 2021-01-22 05:26:13
get_返回None的常见原因是: a)未找到通道ID b)机器人未连接c)在机器人启动之前调用get_方法。
在您的案例中,有两个明显的遗漏
https://stackoverflow.com/questions/65839365
复制相似问题