Convert all .py files to be valid Python (#98)

This commit is contained in:
cclauss
2018-03-07 01:37:46 +01:00
committed by Donne Martin
parent 3ca1f1d0d2
commit f099a0ad3f
7 changed files with 78 additions and 39 deletions

View File

@@ -92,7 +92,7 @@ class BlackJackHand(Hand):
def possible_scores(self):
"""Return a list of possible scores, taking Aces into account."""
# ...
pass
class Deck(object):
@@ -113,4 +113,5 @@ class Deck(object):
return None
return card
def shuffle(self): # ...
def shuffle(self):
pass