我想要一种更改方法
async def check(reaction, user):
await x
return y
await self.bot.wait_for('reaction_add', check=check)
这会产生一条错误消息,提示您未等待检查功能:
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: ExtensionFailed: Extension 'cogs.boost' raised an error: SyntaxError: 'await' outside async function
如果我将代码更改为:
async def check(reaction, user):
await x
return y
await self.bot.wait_for('reaction_add', check=await check)
我收到以下错误消息:
TypeError: object function can't be used in 'await' expression
是否可以使用异步检查功能?谢谢!当前的帮助命令是自定义命令,在我的机器人中使用discord.py
答案 0 :(得分:0)
通过深入研究代码(在discord.py 1.5.1上),似乎没有一种使用协程作为检查功能的方法。可能存在一个变通的解决方法,但这不是最佳实践,并且会导致比您通过实施解决的问题多得多的问题。如果您想利用check
,只需编写执行检查功能的同步版本,并确保使其尽可能高效以防止阻塞。