(self)
| 291 | ESC_RESET = "\x1b[0m" |
| 292 | |
| 293 | def __init__(self) -> None: |
| 294 | self.sample_number: int = 0 |
| 295 | # IMPORTANT: create distinct empty records (no shared reference) |
| 296 | self.data: List[LatencyRecord] = [LatencyRecord() for _ in range(0, g_params.num_latency_records + 1)] |
| 297 | |
| 298 | # ------------------------------- Debug -------------------------------- # |
| 299 |
nothing calls this directly
no test coverage detected