From 7af8b313e5305d72f9a5f3ade20d493b26ddf7db Mon Sep 17 00:00:00 2001 From: apple502j <33279053+apple502j@users.noreply.github.com> Date: Wed, 15 Jan 2020 13:43:42 +0900 Subject: [PATCH] [commands] Add missing async in documentation --- discord/ext/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index f4b6aedbc..97c2634ce 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -1318,7 +1318,7 @@ def check(predicate): def owner_or_permissions(**perms): original = commands.has_permissions(**perms).predicate - def extended_check(ctx): + async def extended_check(ctx): if ctx.guild is None: return False return ctx.guild.owner_id == ctx.author.id or await original(ctx)