mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Correct the types in a copied docstring
This commit is contained in:
@@ -159,9 +159,10 @@ class SelectionList(Generic[SelectionType], OptionList):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def control(self) -> OptionList:
|
def control(self) -> OptionList:
|
||||||
"""The option list that sent the message.
|
"""The selection list that sent the message.
|
||||||
|
|
||||||
This is an alias for [`OptionMessage.option_list`][textual.widgets.OptionList.OptionMessage.option_list]
|
This is an alias for
|
||||||
|
[`SelectionMessage.selection_list`][textual.widgets.SelectionList.SelectionMessage.selection_list]
|
||||||
and is used by the [`on`][textual.on] decorator.
|
and is used by the [`on`][textual.on] decorator.
|
||||||
"""
|
"""
|
||||||
return self.selection_list
|
return self.selection_list
|
||||||
|
|||||||
Reference in New Issue
Block a user