from yahtzee import Yachtzee from yahtzee_goals import ( GoalOnes, GoalTwos, GoalThrees, ThreeOfAKind, FourOfAKind, FullHouse, SmallStraight, LargeStraight, Yahtzee, Chance ) goals = [ GoalOnes(), GoalTwos(), GoalThrees(), ThreeOfAKind(), FourOfAKind(), FullHouse(), SmallStraight(), LargeStraight(), Yahtzee(), Chance() ] game = Yachtzee(goals) game.play()