Remove extra space in Theme example

This commit is contained in:
johnthagen 2021-10-28 09:17:57 -04:00 committed by GitHub
parent eb673d1204
commit d429b02991
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"
})