This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
class EventTimer: | |
def __init__(self, name): | |
self.events = [] | |
self.timer = None | |
self.name = name | |
def reset(self): |