docstring

This commit is contained in:
Will McGugan 2020-03-27 09:05:12 +00:00
parent c8a5fb6a25
commit c2eef66719
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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()