Initialize timer storage if not exists.
(self)
| 399 | # ================================================================ |
| 400 | |
| 401 | def __init_timers__(self): |
| 402 | """Initialize timer storage if not exists.""" |
| 403 | if not hasattr(self, '_timers'): |
| 404 | self._timers: Dict[str, float] = {} |
| 405 | |
| 406 | @contextmanager |
| 407 | def node_timer(self, node_id: str): |
no outgoing calls
no test coverage detected