Skip to content

Commit 83a63d9

Browse files
authored
[mypy] Add missing type annotation in conways_game_of_life.py (#5490)
1 parent 57a7e57 commit 83a63d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cellular_automata/conways_game_of_life.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def new_generation(cells: list[list[int]]) -> list[list[int]]:
7070
return next_generation
7171

7272

73-
def generate_images(cells: list[list[int]], frames) -> list[Image.Image]:
73+
def generate_images(cells: list[list[int]], frames: int) -> list[Image.Image]:
7474
"""
7575
Generates a list of images of subsequent Game of Life states.
7676
"""

0 commit comments

Comments
 (0)