From fd3fbbcc53db48046bdf6d0a330aa2b33656e1ae Mon Sep 17 00:00:00 2001 From: Ave Date: Fri, 29 May 2020 17:54:29 +0300 Subject: [PATCH] sar: hotfix --- cogs/sar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/sar.py b/cogs/sar.py index 4feda4a..7aaf4f5 100644 --- a/cogs/sar.py +++ b/cogs/sar.py @@ -11,8 +11,8 @@ class SAR(Cog): @commands.guild_only() @commands.command() @commands.check(check_if_staff_or_ot) - async def sar(self, ctx, role: str): - """Gets you a self assignable role.""" + async def sar(self, ctx): + """Lists self assignable roles.""" return await ctx.send( "Self assignable roles in this guild: " + ",".join(config.self_assignable_roles)