We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc30f5 commit e4ea8e1Copy full SHA for e4ea8e1
backend/main.py
@@ -100,12 +100,10 @@ class TestForm(FormPage):
100
divider: Divider
101
label: Label = "Label"
102
hidden: Hidden = "Hidden"
103
- dropdown: DropdownChoices = (
104
- "2" # When there are > 3 choices a dropdown will be rendered
105
- )
106
- radio: RadioChoices = (
107
- "3" # When there are <= 3 choices a radio group will be rendered
108
+ # When there are > 3 choices a dropdown will be rendered
+ dropdown: DropdownChoices = ("2")
+ # When there are <= 3 choices a radio group will be rendered
+ radio: RadioChoices = ("3")
109
110
form_data_1 = yield TestForm
111
0 commit comments