From bf638e711ea517a782a125d680603a9d4a87e7ae Mon Sep 17 00:00:00 2001 From: Plaza521 <89989298+Plaza521@users.noreply.github.com> Date: Thu, 16 Mar 2023 23:14:44 +0300 Subject: [PATCH] fix creating Player object --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 8dbc0ea..5de43d2 100644 --- a/main.py +++ b/main.py @@ -10,7 +10,7 @@ class Game: def __init__(self) -> None: self.running = True self.is_pause = False - self.pl = Player(self) + self.pl = Player() self.out = Out(self.pl) kb.add_hotkey(QUIT_BUTTON, self.stop_game)