Return the elapsed time recorded by the timer key.
(self, timer_key: str)
| 488 | self._timers[f"memory_{node_id}_{operation_type}_{stage}"] = duration |
| 489 | |
| 490 | def get_timer(self, timer_key: str) -> Optional[float]: |
| 491 | """Return the elapsed time recorded by the timer key.""" |
| 492 | self.__init_timers__() |
| 493 | return self._timers.get(timer_key) |
no test coverage detected