From 1c7a9bb028a1504c4dbc34c7b2f2cd3d686126ac Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 23 Feb 2022 12:25:29 -0500 Subject: [PATCH] [U] Update comment --- assignments/A2/a2_game_tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignments/A2/a2_game_tree.py b/assignments/A2/a2_game_tree.py index a4b4d73..8e77246 100644 --- a/assignments/A2/a2_game_tree.py +++ b/assignments/A2/a2_game_tree.py @@ -89,7 +89,7 @@ class GameTree: return None def add_subtree(self, subtree: GameTree) -> None: - """Add a subtree to this game tree.""" + """Add a subtree to this game tree and updates white win probability.""" self._subtrees.append(subtree) self._update_white_win_probability()