Refresh (render) the progress information.
(self)
| 1545 | task.finished_speed = task.speed |
| 1546 | |
| 1547 | def refresh(self) -> None: |
| 1548 | """Refresh (render) the progress information.""" |
| 1549 | if not self.disable and self.live.is_started: |
| 1550 | self.live.refresh() |
| 1551 | |
| 1552 | def get_renderable(self) -> RenderableType: |
| 1553 | """Get a renderable for the progress display.""" |
no outgoing calls