Path 1: 8 calls (1.0)
→ live Live (8)
→ refresh_per_second 10 (4) 12.5 (2) 4 (2)
1def __init__(self, live: "Live", refresh_per_second: float) -> None: 2 self.live = live 3 self.refresh_per_second = refresh_per_second 4 self.done = Event() 5 super().__init__(daemon=True)