From fb56a898629268764b18a13306bdc07b06cbd64c Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Sun, 2 Apr 2023 10:43:06 +0100 Subject: [PATCH] Remove type information from a property docstring --- src/textual/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/app.py b/src/textual/app.py index 104dd9769..43a84c7c0 100644 --- a/src/textual/app.py +++ b/src/textual/app.py @@ -528,7 +528,7 @@ class App(Generic[ReturnType], DOMNode): @property def focused(self) -> Widget | None: - """Widget | None: the widget that is focused on the currently active screen.""" + """The widget that is focused on the currently active screen.""" return self.screen.focused @property