def __init__(self):
     self.die_a = Angrydice(
     )  #die_a is equal to what has been set from the Angrydice class so I can make a die_a
     self.die_b = Angrydice(
     )  #die_b is equal to what has been set from the Angrydice class so I can make a die_b
     self.cheating = False  #making cheating variable equal false so I can use a global function within another function for a sudo short-cut
     self.current_stage = 1  #making  current_stage variable so I can use a global function within another function for a sudo short-cut