From 49d0e0e7e1c2a15b09a40fbe94471e2745b3a882 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Tue, 30 Mar 2021 21:17:15 +0200 Subject: [PATCH] Fix typo --- rich/live.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rich/live.py b/rich/live.py index 0746d7a5b..f00b55245 100644 --- a/rich/live.py +++ b/rich/live.py @@ -39,7 +39,7 @@ class Live(JupyterMixin, RenderHook): console (Console, optional): Optional Console instance. Default will an internal Console instance writing to stdout. screen (bool, optional): Enable alternate screen mode. Defaults to False. auto_refresh (bool, optional): Enable auto refresh. If disabled, you will need to call `refresh()` or `update()` with refresh flag. Defaults to True - refresh_per_second (float, optional): Number of times per second to refresh the live display. Defaults to 1. + refresh_per_second (float, optional): Number of times per second to refresh the live display. Defaults to 4. transient (bool, optional): Clear the renderable on exit (has no effect when screen=True). Defaults to False. redirect_stdout (bool, optional): Enable redirection of stdout, so ``print`` may be used. Defaults to True. redirect_stderr (bool, optional): Enable redirection of stderr. Defaults to True.