Skip to content

Commit

Permalink
Update model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
quaquel committed Feb 11, 2025
1 parent 3784e28 commit 0fab213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesa/examples/basic/conways_game_of_life/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, width=50, height=50, initial_fraction_alive=0.2, seed=None):

# Place a cell at each location, with some initialized to
# ALIVE and some to DEAD.
for cell in self.grid.all_cells():
for cell in self.grid.all_cells:
Cell(
self,
cell,
Expand Down

0 comments on commit 0fab213

Please sign in to comment.