From b8ae05f59ff393ca9456a8a59ccc13ddbb68b6b8 Mon Sep 17 00:00:00 2001 From: Willy <19799671+Willy-C@users.noreply.github.com> Date: Wed, 6 Apr 2022 19:24:17 -0400 Subject: [PATCH] [commands] Fix missing ctx in example --- discord/ext/commands/parameters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/parameters.py b/discord/ext/commands/parameters.py index e1cc9d112..e5a20aaa1 100644 --- a/discord/ext/commands/parameters.py +++ b/discord/ext/commands/parameters.py @@ -195,7 +195,7 @@ def parameter( .. code-block:: python3 @bot.command() - async def wave(to: discord.User = commands.parameter(default=lambda ctx: ctx.author)): + async def wave(ctx, to: discord.User = commands.parameter(default=lambda ctx: ctx.author)): await ctx.send(f'Hello {to.mention} :wave:') Parameters