Browse Source

[commands] Add missing async in documentation

pull/2508/head
apple502j 5 years ago
committed by Rapptz
parent
commit
7af8b313e5
  1. 2
      discord/ext/commands/core.py

2
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)

Loading…
Cancel
Save