Path 1: 8 calls (1.0)

Live (8)

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)