From d429b02991afad36346d2454235eea064cffc4d6 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Thu, 28 Oct 2021 09:17:57 -0400 Subject: [PATCH] Remove extra space in Theme example --- docs/source/style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/style.rst b/docs/source/style.rst index b0162150..ee9eca5d 100644 --- a/docs/source/style.rst +++ b/docs/source/style.rst @@ -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" })