Refactor _setup_world method to remove unnecessary self parameter
Some checks failed
Build Simulation and Test / Run All Tests (push) Failing after 30s

This commit is contained in:
Sam 2025-06-16 15:47:48 -05:00
parent 14dfc7bfb8
commit eded181c62

View File

@ -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)