Im currently trying to locate a role that matches both a color and name
ColorRole = utils.get(
sequence=used_component_ctx.member.roles,
color=targetRole.color.value,
name="Color",
)
for whatever reason, it keeps returning None
I know the role exists because ive tried printing ctx.member.roles and have found it, and have matched the value of targetRole.color.value and the role color value as well as the name being "Color"
any ideas for how to get a role by both name and color, or make utils.get work?