Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9a259fd

Browse files
authored
Merge pull request #23241 from timhoffm/example-radio-buttions
Fix invalid value in radio buttons example
2 parents 4cdeb44 + 7867d90 commit 9a259fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/widgets/radio_buttons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def colorfunc(label):
4545
radio2.on_clicked(colorfunc)
4646

4747
rax = fig.add_axes([0.05, 0.1, 0.15, 0.15], facecolor=axcolor)
48-
radio3 = RadioButtons(rax, ('-', '--', '-.', 'steps', ':'))
48+
radio3 = RadioButtons(rax, ('-', '--', '-.', ':'))
4949

5050

5151
def stylefunc(label):

0 commit comments

Comments
 (0)