(self, type, value, traceback)
| 52 | return self |
| 53 | |
| 54 | def __exit__(self, type, value, traceback): |
| 55 | print(self.print_tmpl.format(self.since_last_check())) |
| 56 | self._is_running = False |
| 57 | |
| 58 | def start(self): |
| 59 | """Start the timer.""" |
nothing calls this directly
no test coverage detected