From a32cfdbe404cd15e6f3e4fbacf3c35820632897d Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 24 May 2023 14:32:32 +0100 Subject: [PATCH] Better linking for the docstring for MessageSelectionType --- src/textual/widgets/_selection_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/widgets/_selection_list.py b/src/textual/widgets/_selection_list.py index f713363de..d37654303 100644 --- a/src/textual/widgets/_selection_list.py +++ b/src/textual/widgets/_selection_list.py @@ -21,7 +21,7 @@ SelectionType = TypeVar("SelectionType") """The type for the value of a [`Selection`][textual.widgets.selection_list.Selection] in a [`SelectionList`][textual.widgets.SelectionList]""" MessageSelectionType = TypeVar("MessageSelectionType") -"""The type for the value of a `SelectionList` message""" +"""The type for the value of a [`Selection`][textual.widgets.selection_list.Selection] in a [`SelectionList`][textual.widgets.SelectionList] message.""" class SelectionError(TypeError):