This commit is contained in:
Aevann1 2022-02-06 14:16:34 +02:00
parent 9690e9fd2b
commit d8501443e5

View file

@ -41,7 +41,7 @@ def get_hand_value(hand):
def format_cards(hand): def format_cards(hand):
return map("".join(x), hand) return map(lambda x: "".join(x), hand)
def format_all(player_hand, dealer_hand, deck, status, wager): def format_all(player_hand, dealer_hand, deck, status, wager):