AttributeError: module 'discord' has no attribute 'Embed'
AttributeError: module 'discord' has no attribute 'Embed'
我有这个代码:
embed=discord.Embed(title="Commands - Type '/help [command prefix]' for command info!", color=0xff0d13)
embed.set_footer(text="!blacklist, !clean, !clear, !disconnect, !id, !joinserver, !listids, !np, !pause, !perms, !play, !pldump, !queue, !restart, !resume, !search, !setavatar, !setname, !setnick, !shuffle, !shutdown, !skip, !summon, !volume")
await self.bot.say(embed=embed)
而且我不断收到此错误:
AttributeError: module 'discord' has no attribute 'Embed'
但我不知道是什么原因造成的;我已经尝试再次安装 discord.py
,但仍然会发生这种情况。是与代码本身有关还是其他原因?
您的问题很可能是由于您将该文件或路径中某处的其他文件命名为 discord.py
。要修复它,只需将文件重命名为其他名称即可。也许 run.py
什么的?
我有这个代码:
embed=discord.Embed(title="Commands - Type '/help [command prefix]' for command info!", color=0xff0d13)
embed.set_footer(text="!blacklist, !clean, !clear, !disconnect, !id, !joinserver, !listids, !np, !pause, !perms, !play, !pldump, !queue, !restart, !resume, !search, !setavatar, !setname, !setnick, !shuffle, !shutdown, !skip, !summon, !volume")
await self.bot.say(embed=embed)
而且我不断收到此错误:
AttributeError: module 'discord' has no attribute 'Embed'
但我不知道是什么原因造成的;我已经尝试再次安装 discord.py
,但仍然会发生这种情况。是与代码本身有关还是其他原因?
您的问题很可能是由于您将该文件或路径中某处的其他文件命名为 discord.py
。要修复它,只需将文件重命名为其他名称即可。也许 run.py
什么的?