Skip to content

Commit 65da27f

Browse files
fix typo
1 parent 6c7b446 commit 65da27f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rich/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ def render(self, task: "Task") -> Text:
920920
class IterationSpeedColumn(ProgressColumn):
921921
"""Renders iterations per second, e.g. '11.4 it/s'."""
922922

923-
def render(self, task: Task) -> Text:
923+
def render(self, task: "Task") -> Text:
924924
last_speed = task.last_speed if hasattr(task, 'last_speed') else None
925925
if task.finished and last_speed is not None:
926926
return Text(f"{last_speed} it/s", style="progress.data.speed")

0 commit comments

Comments
 (0)