@@ -355,7 +355,7 @@ def setup_game(team_specs, *, layout_dict: Layout, max_rounds=300, rng=None,
355355 'food' : food ,
356356
357357 #: Food ages per team. Dict of (int, int) to int
358- 'food_age' : ( {}, {}) ,
358+ 'food_age' : [ {}, {}] ,
359359
360360 ### Round/turn information
361361 #: Phase
@@ -381,10 +381,10 @@ def setup_game(team_specs, *, layout_dict: Layout, max_rounds=300, rng=None,
381381 'score' : [0 , 0 ],
382382
383383 #: Fatal errors
384- 'fatal_errors' : ([ ], []) ,
384+ 'fatal_errors' : [[ ], []] ,
385385
386386 #: Number of timeouts for a team
387- 'timeouts' : ( {}, {}) ,
387+ 'timeouts' : [ {}, {}] ,
388388
389389 ### Configuration
390390 #: Maximum number of rounds, int
@@ -411,10 +411,10 @@ def setup_game(team_specs, *, layout_dict: Layout, max_rounds=300, rng=None,
411411 ### Informative
412412
413413 #: Name of the teams. Tuple of str
414- 'team_names' : team_names ,
414+ 'team_names' : list ( team_names ) ,
415415
416416 #: Additional team info. Tuple of str|None
417- 'team_infos' : team_infos ,
417+ 'team_infos' : list ( team_infos ) ,
418418
419419 #: Time each team needed, list of float
420420 'team_time' : [0.0 , 0.0 ],
0 commit comments