Merge pull request #1628 from johnthagen/patch-1

Remove extra space in Theme example
This commit is contained in:
Will McGugan 2021-11-05 17:07:49 +00:00 committed by GitHub
commit 6e7d81d8c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ To use a style theme, construct a :class:`~rich.theme.Theme` instance and pass i
from rich.console import Console
from rich.theme import Theme
custom_theme = Theme({
"info" : "dim cyan",
"info": "dim cyan",
"warning": "magenta",
"danger": "bold red"
})