Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jlat07 committed Apr 6, 2020
1 parent b5adb50 commit 57a6ee2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions classes.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import random


'''
Classes needed for Black Jack Game
'''

suits = ["\u2663", "\u2665", "\u2666", "\u2660"]
ranks = ('2', '3', '4', '5', '6', '7', '8', '9', 'J', 'Q', 'K', 'A')
values = {'2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9, 'J': 10, 'K': 10, 'Q': 10, 'A': 11}


class Card:
def __init__(self, suit: str, rank: str):
self.suit = suit
Expand Down
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import time
from classes import Card, Deck, Hand
from classes import Deck, Hand


'''
Expand Down

0 comments on commit 57a6ee2

Please sign in to comment.