mirror of https://github.com/Textualize/rich.git
docstring
This commit is contained in:
parent
c8a5fb6a25
commit
c2eef66719
|
@ -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)
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue