diff --git a/src/conway/gameoflife.py b/src/conway/gameoflife.py index c07af59..65db2fd 100644 --- a/src/conway/gameoflife.py +++ b/src/conway/gameoflife.py @@ -103,9 +103,9 @@ def get_starting_board(size, start=random): else: return State(size, size, None) -def start(size = 100, start="random"): +def get(size = 100, start="random"): board = get_starting_board(size, start) - return PlotlyAnimation(board, size) + return PlotlyAnimation(board, size).animation def main(): # state = State(20, 20, [(0, 1), (1, 2), (2, 0), (2, 1), (2, 2)])