aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/utils
diff options
context:
space:
mode:
Diffstat (limited to 'botcore/utils')
-rw-r--r--botcore/utils/cooldown.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/botcore/utils/cooldown.py b/botcore/utils/cooldown.py
index 879a2894..8de7c243 100644
--- a/botcore/utils/cooldown.py
+++ b/botcore/utils/cooldown.py
@@ -167,7 +167,7 @@ class _CommandCooldownManager:
self._cooldowns[key] = filtered_cooldowns
-def _create_argument_tuple(*args: object, **kwargs: object) -> Iterable[object]:
+def _create_argument_tuple(*args: object, **kwargs: object) -> tuple[object, ...]:
return (*args, _KEYWORD_SEP_SENTINEL, *kwargs.items())