diff options
author | 2018-02-09 10:29:28 +0000 | |
---|---|---|
committer | 2018-02-09 10:29:28 +0000 | |
commit | 1ec55a445b4978e6ea2736e71e323cfe4ddb70b3 (patch) | |
tree | 7a61d16f02be4e96358ee0980fec120bc24b0bf4 | |
parent | Require verified role for info wrapper command (diff) |
Ignore input on verification command
-rw-r--r-- | bot/cogs/verification.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/verification.py b/bot/cogs/verification.py index 75c4cf92c..0b4935cb0 100644 --- a/bot/cogs/verification.py +++ b/bot/cogs/verification.py @@ -38,7 +38,7 @@ class Verification: @command(name="accept", hidden=True, aliases=["verify", "verified", "accepted", "accept()"]) @without_role(VERIFIED_ROLE) @in_channel(VERIFICATION_CHANNEL) - async def accept(self, ctx: Context): + async def accept(self, ctx: Context, *_): # We don't actually care about the args """ Accept our rules and gain access to the rest of the server """ |