Skip to content

Commit 35899a6

Browse files
committed
progres bar: limit refresh to 5 times per second
1 parent b61c629 commit 35899a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/cli/progress_bars.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _rich_progress_bar(
4949
TimeRemainingColumn(),
5050
)
5151

52-
progress = Progress(*columns, refresh_per_second=30)
52+
progress = Progress(*columns, refresh_per_second=5)
5353
task_id = progress.add_task(" " * (get_indentation() + 2), total=total)
5454
with progress:
5555
for chunk in iterable:

0 commit comments

Comments
 (0)