Remove annotation from RHS of the typing example

This commit is contained in:
Dave Pearson
2023-05-25 13:57:08 +01:00
parent 4c93e63ed6
commit baa060f9fa

View File

@@ -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