diff --git a/README.md b/README.md index e70b6d12..21f13573 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ The log method could be used for logging to the terminal for long running applic ### Logging Handler -You can also use the builtin Handler class to format and colorize output form Python's logging module. Here's an example of the output: +You can also use the builtin [Handler class](https://rich.readthedocs.io/en/latest/logging.html) to format and colorize output form Python's logging module. Here's an example of the output: ![Logging](https://github.com/willmcgugan/rich/blob/master/imgs/logging.png) diff --git a/rich/progress.py b/rich/progress.py index 78803f48..b7e34dd0 100644 --- a/rich/progress.py +++ b/rich/progress.py @@ -467,7 +467,7 @@ class Progress: completed (float, optional): Updates task.completed if not None. advance (float, optional): Add a value to task.completed if not None. visible (bool, optional): Set visible flag if not None. - refresh (bool): For a refresh of progress information. + refresh (bool): Force a refresh of progress information. Default is False. **fields (Any): Additional data fields required for rendering. """ current_time = monotonic()