(self, period)
| 147 | print("Example 5") |
| 148 | class Timer: |
| 149 | def __init__(self, period): |
| 150 | self.current = period |
| 151 | self.period = period |
| 152 | |
| 153 | def reset(self): |
| 154 | print("Resetting") |
nothing calls this directly
no outgoing calls
no test coverage detected