From 1ffe27a82855ea3d49794aa6bf2618c05d673ae6 Mon Sep 17 00:00:00 2001 From: Qwerty-133 <74311372+Qwerty-133@users.noreply.github.com> Date: Sun, 29 Aug 2021 01:43:45 +0530 Subject: Fix mismatches in parameter names and docstrings --- bot/converters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/converters.py b/bot/converters.py index 597f841c4..97919cfb7 100644 --- a/bot/converters.py +++ b/bot/converters.py @@ -523,7 +523,7 @@ class UnambiguousUser(UserConverter): """ async def convert(self, ctx: Context, argument: str) -> discord.User: - """Convert the `arg` to a `discord.User`.""" + """Convert the `argument` to a `discord.User`.""" if _is_an_unambiguous_user_argument(argument): return await super().convert(ctx, argument) else: @@ -539,7 +539,7 @@ class UnambiguousMember(MemberConverter): """ async def convert(self, ctx: Context, argument: str) -> discord.Member: - """Convert the `arg` to a `discord.Member`.""" + """Convert the `argument` to a `discord.Member`.""" if _is_an_unambiguous_user_argument(argument): return await super().convert(ctx, argument) else: -- cgit v1.2.3