mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
docstrings
This commit is contained in:
@@ -700,6 +700,9 @@ class App(Generic[ReturnType], DOMNode):
|
|||||||
"""Mount widgets. Widgets specified as positional args, or keywords args. If supplied
|
"""Mount widgets. Widgets specified as positional args, or keywords args. If supplied
|
||||||
as keyword args they will be assigned an id of the key.
|
as keyword args they will be assigned an id of the key.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
AwaitMount: An awaitable object that waits for widgets to be mounted.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
mounted_widgets = self._register(self.screen, *anon_widgets, **widgets)
|
mounted_widgets = self._register(self.screen, *anon_widgets, **widgets)
|
||||||
return AwaitMount(mounted_widgets)
|
return AwaitMount(mounted_widgets)
|
||||||
@@ -1133,7 +1136,11 @@ class App(Generic[ReturnType], DOMNode):
|
|||||||
"""Register widget(s) so they may receive events.
|
"""Register widget(s) so they may receive events.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
parent (Widget): Parent Widget
|
parent (Widget): Parent Widget.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
list[Widget]: List of modified widgets.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
if not anon_widgets and not widgets:
|
if not anon_widgets and not widgets:
|
||||||
return []
|
return []
|
||||||
|
|||||||
@@ -360,7 +360,7 @@ class Widget(DOMNode):
|
|||||||
```
|
```
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
AwaitMount: An awaitable that waits for widgets to be mounted.
|
AwaitMount: An awaitable object that waits for widgets to be mounted.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
mounted_widgets = self.app._register(self, *anon_widgets, **widgets)
|
mounted_widgets = self.app._register(self, *anon_widgets, **widgets)
|
||||||
|
|||||||
Reference in New Issue
Block a user