from yahtzee import Yahtzee from yahtzee_goals import ( GoalOnes, GoalTwos, GoalThrees, GoalFours, LargeStraight ) goals = [ GoalOnes(), GoalTwos(), GoalThrees(), GoalFours(), LargeStraight(), ] game = Yahtzee(goals) game.play()