remove print

This commit is contained in:
karoel2 2023-01-31 20:50:00 +01:00
parent 60bab569af
commit 287462406f

View File

@ -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: