class Cycle: def __init__(self, rate, reverse, low, high): self.count = 0 self.rate = rate self.reverse = reverse self.low = low self.high = high