From dd6735167ba8123743bbef6297703ea33a1d41ab Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 19 Sep 2024 20:19:09 -0700 Subject: [PATCH] Update videopoker.py --- modules/videopoker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/videopoker.py b/modules/videopoker.py index f11aad8..897817f 100644 --- a/modules/videopoker.py +++ b/modules/videopoker.py @@ -45,7 +45,7 @@ def drawCards(*cards, return_string=True): """ # we will use this to prints the appropriate icons for each card suits_name = ['Spades', 'Diamonds', 'Hearts', 'Clubs'] - suits_symbols = ['♠', '♦', '♥', '♣'] + suits_symbols = ['♠️', '♦️', '♥️', '♣️'] # create an empty list of list, each sublist is a line 2 lines for the card lines = [[] for i in range(1)]