Initialize the EventPathTimer. This constructor sets the previous message and time to None, preparing the instance for recording events.
(self)
| 29 | """ |
| 30 | |
| 31 | def __init__(self): |
| 32 | """ |
| 33 | Initialize the EventPathTimer. |
| 34 | |
| 35 | This constructor sets the previous message and time to None, preparing |
| 36 | the instance for recording events. |
| 37 | """ |
| 38 | self.prev_message: str = None |
| 39 | self.prev_time: datetime = None |
| 40 | |
| 41 | def reset(self): |
| 42 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected