class APSleep(Mutatable):
def __init__(self, wakeners, sleep_minutes):
super().__init__() # Call the constructor of the parent class (Mutatable)
self.wakeners: Responder = wakeners
self.done: bool = False
self.timeGate: TimeGate = TimeGate(sleep_minutes)...