Discord.py:从字符串中设置角色的颜色,并输入错误

时间:2020-02-28 22:15:35

标签: discord.py discord.py-rewrite

await role.edit(color="#000000")

我正在尝试更改角色的颜色,但出现错误:Command raised an exception: TypeError: 'type' object is not subscriptable。预先谢谢你。

1 个答案:

答案 0 :(得分:0)

Docs中,您需要提供color来编辑角色,而不是字符串。您可以通过多种方式执行此操作:

# 0x prefix
await role.edit(color=0x000000)

# Color decimal
await role.edit(color=0)

# Using the built in discord.Colour
await role.edit(color=discord.Colour.from_rgb(0, 0, 0))