From c619984845adfd33f6b046ed6c01b9f402899be6 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 1 Mar 2023 10:44:20 +0000 Subject: [PATCH] Add a docstring to TextLog --- src/textual/widgets/_text_log.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/textual/widgets/_text_log.py b/src/textual/widgets/_text_log.py index c2419ac6b..035b3c64f 100644 --- a/src/textual/widgets/_text_log.py +++ b/src/textual/widgets/_text_log.py @@ -21,6 +21,8 @@ from ..strip import Strip class TextLog(ScrollView, can_focus=True): + """A widget for logging text.""" + DEFAULT_CSS = """ TextLog{ background: $surface;