Skip to content

Commit 1b2a07b

Browse files
committed
Comments
1 parent e12a33e commit 1b2a07b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

71_Poker/python/game.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def _play_round(self) -> None:
7272
print(self.human.hand)
7373
print()
7474

75+
# --- Opening bet ---
7576
dealer_action = self.dealer.get_opening_action()
7677
if self.dealer.money < self.dealer.bet:
7778
self._dealer_try_raise_funds()
@@ -92,8 +93,8 @@ def _play_round(self) -> None:
9293
f"\nI am taking {draw_count} card{'s' if draw_count != 1 else ''}"
9394
)
9495

96+
# --- Post-draw bet ---
9597
self.dealer.decide_postdraw_bet()
96-
9798
if not self._conduct_betting_round(post_draw=True):
9899
return
99100

0 commit comments

Comments
 (0)