From 61e4e2fca909f09dcb82f8adafc01a04c132b6ca Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 9 Mar 2020 11:31:31 -0400 Subject: [PATCH] Fix formatting --- src/cogs/booru.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cogs/booru.py b/src/cogs/booru.py index e08079f..59c29e7 100644 --- a/src/cogs/booru.py +++ b/src/cogs/booru.py @@ -633,7 +633,9 @@ class MsG(cmds.Cog): 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), - 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: selection = future.result()