Convert all .py files to be valid Python

`raise NotImplementedError('Please replace this line with your code...')` signals to the user where they need to put their code.

This approach enables the codebase to be tested with lint tools like flake8, pyflakes, pylint, etc.
This commit is contained in:
cclauss
2017-08-15 08:49:57 +02:00
parent b566126bab
commit 6b4b5ba3ee
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