From 4d92e185f8e862642a70cc15cbca2eb6d442a767 Mon Sep 17 00:00:00 2001 From: Numerlor Date: Tue, 21 Jun 2022 15:16:12 +0200 Subject: Add comment for skipped arguments --- botcore/utils/cooldown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'botcore') diff --git a/botcore/utils/cooldown.py b/botcore/utils/cooldown.py index 9e79e48a..b5641063 100644 --- a/botcore/utils/cooldown.py +++ b/botcore/utils/cooldown.py @@ -165,7 +165,7 @@ def block_duplicate_invocations( @command_wraps(func) async def wrapper(*args: P.args, **kwargs: P.kwargs) -> R: - arg_tuple = (*args[2:], *kwargs.items()) + arg_tuple = (*args[2:], *kwargs.items()) # skip self and ctx from the command ctx = typing.cast("Context[BotBase]", args[1]) channel = ctx.channel -- cgit v1.2.3