Skip to content

Commit 7265d18

Browse files
Merge pull request #158 from Zacinc05/patch-1
Correct dealer print statement
2 parents 2b18dc2 + 261f66f commit 7265d18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

casino/games/blackjack/blackjack_functional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def play_blackjack(ctx: GameContext) -> None:
249249
dealer_bj = True
250250
player_status = False
251251
dealer_status = False
252-
cprint("Your hand:")
252+
cprint("Dealer hand:")
253253
print_hand(dealer_hand)
254254
cprint("Your hand:")
255255
print_hand(player_hand)

0 commit comments

Comments
 (0)