From 240f5454683373cd1fef12efa2ce66139a6264e8 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Thu, 31 Dec 2020 14:19:54 -0500 Subject: [PATCH] corrected a double await --- the_prestige.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_prestige.py b/the_prestige.py index 8babd34..12e5037 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -176,7 +176,7 @@ class StartGameCommand(Command): game_task = asyncio.create_task(watch_game(channel, game, user=msg.author, league=league)) await game_task else: - await await msg.channel.send("We can't find one or both of those teams. Check your staging, chief.") + await msg.channel.send("We can't find one or both of those teams. Check your staging, chief.") return class SetupGameCommand(Command):