Remove type information from a property docstring

This commit is contained in:
Dave Pearson
2023-04-02 10:43:06 +01:00
parent eab073e603
commit fb56a89862

View File

@@ -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