forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-02-06 14:16:34 +02:00
parent 936f5cccab
commit f662386f01
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def get_hand_value(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):