We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b21c17 commit e12a33eCopy full SHA for e12a33e
1 file changed
71_Poker/python/players/dealer.py
@@ -25,15 +25,6 @@ class Strategy(Enum):
25
hand_is_weak: bool
26
bluff_discard_count: int | None
27
28
- def __init__(self, money: int) -> None:
29
- """Initialize the computer dealer's starting state."""
30
- super().__init__(money)
31
- self.strategy = Dealer.Strategy.NORMAL
32
- self.bet_base = 0
33
- self.was_bluffing = False
34
- self.hand_is_weak = False
35
- self.bluff_discard_count = None
36
-
37
def receive_new_hand(self, hand: Hand) -> None:
38
"""Reset per-round state and receive a new hand."""
39
super().receive_new_hand(hand)
0 commit comments