remove print
This commit is contained in:
parent
60bab569af
commit
287462406f
3
cards.py
3
cards.py
@ -160,9 +160,6 @@ def blackjack(shoe: iter, dealer_hand: list=[], player_hand: list=[], bet: int=1
|
||||
|
||||
show_game_state(player_hand, dealer_hand)
|
||||
|
||||
if not cards_eval(player_hand)[0] > 21:
|
||||
print(f"dealer: {cards_eval(dealer_hand)} player: {cards_eval(player_hand)}")
|
||||
|
||||
if player_value == 21 and has_blackjack_occured(player_hand):
|
||||
return 'player blackjack', bet
|
||||
elif player_value > 21:
|
||||
|
Loading…
Reference in New Issue
Block a user