From 17f46eb36e82d68f075d20c0e85c8419a2f699cc Mon Sep 17 00:00:00 2001 From: Jonas Zeunert Date: Thu, 5 May 2022 23:27:01 +0200 Subject: [PATCH] async --- Game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Game.py b/Game.py index 9f5b279..81ea930 100644 --- a/Game.py +++ b/Game.py @@ -27,7 +27,7 @@ class Game: await self.is_running.acquire() - self.input_handler.handleInputs() + await self.input_handler.handleInputs() await self.is_running.wait() pass