From 3872d2c249d1fb3f5e8458548d155937e726fa92 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Wed, 4 May 2022 11:15:55 +0100 Subject: [PATCH] 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 fdc4e0c98..f029e1e8a 100644 --- a/src/textual/app.py +++ b/src/textual/app.py @@ -211,7 +211,7 @@ class App(Generic[ReturnType], DOMNode): @property def focus_chain(self) -> list[Widget]: - """Get widgets that may receive focus""" + """Get widgets that may receive focus, in focus order.""" widgets: list[Widget] = [] add_widget = widgets.append root = self.screen