标签: discord.py discord.py-rewrite
await role.edit(color="#000000")
我正在尝试更改角色的颜色,但出现错误:Command raised an exception: TypeError: 'type' object is not subscriptable。预先谢谢你。
Command raised an exception: TypeError: 'type' object is not subscriptable
答案 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))