lots of docstrings

This commit is contained in:
Will McGugan
2022-08-25 09:08:35 +01:00
parent cc4427a4bd
commit b22436933a
27 changed files with 407 additions and 147 deletions

View File

@@ -20,7 +20,7 @@ async def test_focus_chain():
# Check empty focus chain
assert not app.focus_chain
app.screen.add_children(
app.screen._add_children(
Focusable(id="foo"),
NonFocusable(id="bar"),
Focusable(Focusable(id="Paul"), id="container1"),
@@ -37,7 +37,7 @@ async def test_focus_next_and_previous():
app = App()
app._set_active()
app.push_screen(Screen())
app.screen.add_children(
app.screen._add_children(
Focusable(id="foo"),
NonFocusable(id="bar"),
Focusable(Focusable(id="Paul"), id="container1"),