From 2fb309a463ed6bd28d7e93173c8a276ec116465e Mon Sep 17 00:00:00 2001 From: Maya <17090652+XuaTheGrate@users.noreply.github.com> Date: Wed, 3 Aug 2022 19:11:12 +1200 Subject: [PATCH] [commands] Fix typing error with CheckAnyFailure --- discord/ext/commands/errors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/discord/ext/commands/errors.py b/discord/ext/commands/errors.py index b8228cf06..17dd49830 100644 --- a/discord/ext/commands/errors.py +++ b/discord/ext/commands/errors.py @@ -248,9 +248,9 @@ class CheckAnyFailure(CheckFailure): A list of check predicates that failed. """ - def __init__(self, checks: List[CheckFailure], errors: List[Callable[[Context[BotT]], bool]]) -> None: - self.checks: List[CheckFailure] = checks - self.errors: List[Callable[[Context[BotT]], bool]] = errors + def __init__(self, checks: List[Callable[[Context[BotT]], bool]], errors: List[CheckFailure]) -> None: + self.checks: List[Callable[[Context[BotT]], bool]] = checks + self.errors: List[CheckFailure] = errors super().__init__('You do not have permission to run this command.')