Correct unassign incorrectly casting to str

This commit is contained in:
Dan Hess 2021-05-21 14:25:08 -08:00
parent f5c9f069ba
commit 00f0399d77
1 changed files with 1 additions and 1 deletions

View File

@ -513,7 +513,7 @@ class Roles(commands.Cog):
return
fmt = ""
roles = [r for r in role if str(r.id) in self_assignable_roles]
roles = [r for r in role if r.id in self_assignable_roles]
fmt += "\n".join(
[
"Successfully removed {}".format(r.name)