From eded181c622a3958e827f019fcbf92889db266a1 Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 16 Jun 2025 15:47:48 -0500 Subject: [PATCH] Refactor _setup_world method to remove unnecessary self parameter --- core/simulation_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/simulation_engine.py b/core/simulation_engine.py index 1f5abb2..4a81638 100644 --- a/core/simulation_engine.py +++ b/core/simulation_engine.py @@ -34,7 +34,7 @@ class SimulationEngine: self.running = True @staticmethod - def _setup_world(self): + def _setup_world(): world = World(CELL_SIZE, (CELL_SIZE * GRID_WIDTH, CELL_SIZE * GRID_HEIGHT)) random.seed(RANDOM_SEED)