diff --git a/cellular_automata/game_of_life.py b/cellular_automata/game_of_life.py index 56e85b8c3..d691a2b73 100644 --- a/cellular_automata/game_of_life.py +++ b/cellular_automata/game_of_life.py @@ -51,7 +51,6 @@ def seed(canvas: list[list[bool]]) -> None: canvas[i][j] = bool(random.getrandbits(1)) - def run(canvas: list[list[bool]]) -> list[list[bool]]: """ This function runs the rules of game through all points, and changes their