(self, activation_delay)
| 8 | sets a flag if the activation delay exprires.""" |
| 9 | |
| 10 | def __init__(self, activation_delay): |
| 11 | self.start_timestamp = int(time.time()) |
| 12 | self.activation_delay = activation_delay |
| 13 | self.enabled = False |
| 14 | |
| 15 | def check_timer(self): |
| 16 | """Checks the timer whether it has reached the activation delay.""" |
nothing calls this directly
no outgoing calls
no test coverage detected