from yahtzee import Yahtzee from yahtzee_goals import ( GoalOnes, GoalTwos, GoalThrees, GoalFours, GoalFives, GoalSixes, GoalFourofaKind, GoalThreeofaKind, GoalFullHouse, GoalSmallStraight, GoalLargeStraight, GoalYahtzee, GoalChance, ) goals = [ GoalOnes(), GoalTwos(), GoalThrees(), GoalFours(), GoalFives(), GoalSixes(), GoalFourofaKind(), GoalThreeofaKind(), GoalFullHouse(), GoalSmallStraight(), GoalLargeStraight(), GoalYahtzee(), GoalChance(), ] game = Yahtzee(goals) game.play()