[V3 Admin] Clean up help strings (#1906)

This commit is contained in:
aikaterna 2018-07-11 18:49:37 -07:00 committed by Kowlin
parent 8e6ab9aa35
commit 86579068d9

View File

@ -127,8 +127,8 @@ class Admin:
self, ctx: commands.Context, rolename: discord.Role, *, user: MemberDefaultAuthor = None self, ctx: commands.Context, rolename: discord.Role, *, user: MemberDefaultAuthor = None
): ):
""" """
Adds a role to a user. If user is left blank it defaults to the Adds a role to a user.
author of the command. If user is left blank it defaults to the author of the command.
""" """
if user is None: if user is None:
user = ctx.author user = ctx.author
@ -145,8 +145,8 @@ class Admin:
self, ctx: commands.Context, rolename: discord.Role, *, user: MemberDefaultAuthor = None self, ctx: commands.Context, rolename: discord.Role, *, user: MemberDefaultAuthor = None
): ):
""" """
Removes a role from a user. If user is left blank it defaults to the Removes a role from a user.
author of the command. If user is left blank it defaults to the author of the command.
""" """
if user is None: if user is None:
user = ctx.author user = ctx.author
@ -295,8 +295,7 @@ class Admin:
@commands.group(invoke_without_command=True) @commands.group(invoke_without_command=True)
async def selfrole(self, ctx: commands.Context, *, selfrole: SelfRole): async def selfrole(self, ctx: commands.Context, *, selfrole: SelfRole):
""" """
Add a role to yourself that server admins have configured as Add a role to yourself that server admins have configured as user settable.
user settable.
NOTE: The role is case sensitive! NOTE: The role is case sensitive!
""" """