From 6901907b692c72c4e036ee7b9a0c986bc622c998 Mon Sep 17 00:00:00 2001 From: xCirno <78838310+xCirno1@users.noreply.github.com> Date: Thu, 5 May 2022 17:21:52 +0700 Subject: [PATCH] [commands] Add seealso directive in functions referencing checks --- discord/ext/commands/bot.py | 2 ++ discord/ext/commands/core.py | 2 ++ discord/ext/commands/help.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index cb0c703cb..a6752e165 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -371,6 +371,8 @@ class BotBase(GroupMixin[None]): ``func`` parameter is now positional-only. + .. seealso:: The :func:`~discord.ext.commands.check` decorator + Parameters ----------- func diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index ea21fcbb5..31f078e76 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -490,6 +490,8 @@ class Command(_BaseCommand, Generic[CogT, P, T]): ``func`` parameter is now positional-only. + .. seealso:: The :func:`~discord.ext.commands.check` decorator + Parameters ----------- func diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index c43ad4c9c..060744b34 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -388,6 +388,8 @@ class HelpCommand: ``func`` parameter is now positional-only. + .. seealso:: The :func:`~discord.ext.commands.check` decorator + Parameters ---------- func