mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Fix formatting
This commit is contained in:
parent
bc62169e90
commit
61e4e2fca9
1 changed files with 3 additions and 1 deletions
|
@ -633,7 +633,9 @@ class MsG(cmds.Cog):
|
||||||
|
|
||||||
await u.add_reaction(ctx.message, '\N{OCTAGONAL SIGN}')
|
await u.add_reaction(ctx.message, '\N{OCTAGONAL SIGN}')
|
||||||
done, pending = await asyncio.wait([self.bot.wait_for('reaction_add', check=on_reaction, timeout=60),
|
done, pending = await asyncio.wait([self.bot.wait_for('reaction_add', check=on_reaction, timeout=60),
|
||||||
self.bot.wait_for('reaction_remove', check=on_reaction, timeout=60), self.bot.wait_for('message', check=on_message, timeout=60)], return_when=asyncio.FIRST_COMPLETED)
|
self.bot.wait_for('reaction_remove', check=on_reaction, timeout=60),
|
||||||
|
self.bot.wait_for('message', check=on_message, timeout=60)],
|
||||||
|
return_when=asyncio.FIRST_COMPLETED)
|
||||||
for future in done:
|
for future in done:
|
||||||
selection = future.result()
|
selection = future.result()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue