From baa060f9fab7729913e632926053447284bc9b0d Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 25 May 2023 13:57:08 +0100 Subject: [PATCH] Remove annotation from RHS of the typing example --- docs/widgets/selection_list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/selection_list.md b/docs/widgets/selection_list.md index cb22e048f..8dbf7a2de 100644 --- a/docs/widgets/selection_list.md +++ b/docs/widgets/selection_list.md @@ -18,7 +18,7 @@ follows: ```python selections = [("First", 1), ("Second", 2)] -my_selection_list: SelectionList[int] = SelectionList[int](selections) +my_selection_list: SelectionList[int] = SelectionList(selections) ``` !!! note