Simplify goals interface, remove .

This commit is contained in:
Chris Proctor
2024-11-10 14:10:35 -05:00
parent 88b65f75a9
commit 1d97a0df20
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
from yahtzee import Yachtzee
from yahtzee import Yahtzee
from yahtzee_goals import (
GoalOnes,
GoalTwos,
@@ -11,5 +11,5 @@ goals = [
GoalThrees(),
]
game = Yachtzee(goals)
game = Yahtzee(goals)
game.play()