From 2874b24a879716f07779c3b187dae52002c25013 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 24 May 2023 14:30:15 +0100 Subject: [PATCH] Export genetic types for SelectionList So these can end up in the docs. --- src/textual/widgets/selection_list.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/textual/widgets/selection_list.py b/src/textual/widgets/selection_list.py index 56a8caa18..06209dbab 100644 --- a/src/textual/widgets/selection_list.py +++ b/src/textual/widgets/selection_list.py @@ -1,3 +1,8 @@ -from ._selection_list import Selection, SelectionError +from ._selection_list import ( + MessageSelectionType, + Selection, + SelectionError, + SelectionType, +) -__all__ = ["Selection", "SelectionError"] +__all__ = ["MessageSelectionType", "Selection", "SelectionError", "SelectionType"]