misc(forums): removed useless helpstring
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
Seaswimmer 2023-09-08 14:00:38 -04:00
parent f5d0faa8f2
commit 71afa9630d
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -109,7 +109,7 @@ class Forums(commands.Cog):
if role_obj: if role_obj:
already_in_list.append(role_obj.mention) already_in_list.append(role_obj.mention)
if already_in_list: if already_in_list:
roles_list = "**Allowed Roles**:\n" + "\n".join(already_in_list) + f"\nUse `{command} add` to add roles to this list.\nUse `{command} remove` to remove roles from this list." roles_list = "**Allowed Roles**:\n" + "\n".join(already_in_list)
else: else:
roles_list = f"No roles are currently in the allowed roles list.\nUse `{command} add` to add some." roles_list = f"No roles are currently in the allowed roles list.\nUse `{command} add` to add some."
tag_str = None tag_str = None