From 7c218b38335718b0348f3755aa17d4de7f631057 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Sat, 1 Oct 2022 09:16:01 +0200 Subject: [PATCH] Fix migration guide docs for abc.PrivateChannel and cooldown() * Move PrivateChannel ABC change to proper subsection in migration guide * Add change to the accepted callables in cooldown() to migration guide --- discord/ext/commands/core.py | 4 ++++ docs/migrating.rst | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 4fc6792ea..c1cc0a3ea 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -2453,6 +2453,10 @@ def cooldown( .. versionchanged:: 1.7 Callables are now supported for custom bucket types. + + .. versionchanged:: 2.0 + When passing a callable, it now needs to accept :class:`.Context` + rather than :class:`~discord.Message` as its only argument. """ def decorator(func: Union[Command, CoroFunc]) -> Union[Command, CoroFunc]: diff --git a/docs/migrating.rst b/docs/migrating.rst index 9e0175af9..52fe217d9 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -153,7 +153,6 @@ The following have been changed to :func:`runtime-checkable