Path 1: 2 calls (1.0)
Progress (2)
0 (2)
0.1 (2)
1def __init__(self, progress: "Progress", task_id: "TaskID", update_period: float):
2 self.progress = progress
3 self.task_id = task_id
4 self.update_period = update_period
5 self.done = Event()
6
7 self.completed = 0
8 super().__init__()