8000 Fix invalid value in radio buttons example · matplotlib/matplotlib@7867d90 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit 7867d90

Browse files
committed
Fix invalid value in radio buttons example
Closes #23239.
1 parent b396481 commit 7867d90

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)
0