From a230ecd925d898e422ddd6d44f7994ccc99031bb Mon Sep 17 00:00:00 2001 From: edward-jazzhands Date: Sat, 16 Nov 2024 18:16:21 -0400 Subject: [PATCH] fixed docstring in Static to reflect 'renderable' being renamed to 'content' --- src/textual/widgets/_static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/widgets/_static.py b/src/textual/widgets/_static.py index 32b7640fc3..1872f6623f 100644 --- a/src/textual/widgets/_static.py +++ b/src/textual/widgets/_static.py @@ -34,7 +34,7 @@ class Static(Widget, inherit_bindings=False): """A widget to display simple static content, or use as a base class for more complex widgets. Args: - renderable: A Rich renderable, or string containing console markup. + content: A Rich renderable, or string containing console markup. expand: Expand content if required to fill container. shrink: Shrink content if required to fill container. markup: True if markup should be parsed and rendered.