diff options
| -rw-r--r-- | bot/cogs/moderation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/moderation.py b/bot/cogs/moderation.py index 23188ea57..d3f8511e0 100644 --- a/bot/cogs/moderation.py +++ b/bot/cogs/moderation.py @@ -20,11 +20,11 @@ class Moderation: @with_role(Roles.admin, Roles.owner, Roles.moderator) @command(name="moderation.warn") - async def warn(self, ctx, user: User, *, reason: str): + async def warn(self, ctx, user: User, reason: str): """ Create a warning infraction in the database for a user. :param user: accepts user mention, ID, etc. - :param reason: the reason for the warning. + :param reason: the reason for the warning. Wrap in string quotes for multiple words. """ try: |