From 44a94912a341d5b9ff7499b4497e247edca814c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Schr=C3=B6der?= <fschroeder@techfak.uni-bielefeld.de> Date: Thu, 7 Dec 2023 15:36:39 +0100 Subject: [PATCH] pycharm grammar checker --- overcooked_simulator/counters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overcooked_simulator/counters.py b/overcooked_simulator/counters.py index 999c2a62..1151b960 100644 --- a/overcooked_simulator/counters.py +++ b/overcooked_simulator/counters.py @@ -106,8 +106,8 @@ class CuttingBoard(Counter): class ServingWindow(Counter): - def __init__(self, pos, gamescore: GameScore): - self.game_score = gamescore + def __init__(self, pos, game_score: GameScore): + self.game_score = game_score super().__init__(pos) def drop_off(self, item) -> HoldableItem | None: -- GitLab