Simplify goals interface, remove .
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
|
||||
class GoalOnes:
|
||||
"One point for each one"
|
||||
used = False
|
||||
|
||||
def prompt(self, dice):
|
||||
potential_score = self.score(dice)
|
||||
@@ -16,7 +15,6 @@ class GoalOnes:
|
||||
|
||||
class GoalTwos:
|
||||
"Two points for each two"
|
||||
used = False
|
||||
|
||||
def prompt(self, dice):
|
||||
potential_score = self.score(dice)
|
||||
@@ -31,7 +29,6 @@ class GoalTwos:
|
||||
|
||||
class GoalThrees:
|
||||
"Three points for each three"
|
||||
used = False
|
||||
|
||||
def prompt(self, dice):
|
||||
potential_score = self.score(dice)
|
||||
|
||||
Reference in New Issue
Block a user