From b18193b538b4a50c048d29a1655560727ef6608a Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Sat, 17 Oct 2020 12:47:44 +0200 Subject: [PATCH] Fix typo --- rich/progress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rich/progress.py b/rich/progress.py index 2833674f..22c9401f 100644 --- a/rich/progress.py +++ b/rich/progress.py @@ -519,7 +519,7 @@ class Progress(JupyterMixin, RenderHook): speed_estimate_period: (float, optional): Period (in seconds) used to calculate the speed estimate. Defaults to 30. transient: (bool, optional): Clear the progress on exit. Defaults to False. redirect_stout: (bool, optional): Enable redirection of stdout, so ``print`` may be used. Defaults to True. - redirect_stout: (bool, optional): Enable redirection of stderr. Defaults to True. + redirect_stderr: (bool, optional): Enable redirection of stderr. Defaults to True. get_time: (Callable, optional): A callable that gets the current time, or None to use time.monotonic. Defaults to None. """