From 7867d9025872a1f9a2880670256491f9a1cea7b4 Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Fri, 10 Jun 2022 23:23:39 +0200 Subject: [PATCH] Fix invalid value in radio buttons example Closes #23239. --- examples/widgets/radio_buttons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/widgets/radio_buttons.py b/examples/widgets/radio_buttons.py index f6d73d8d971c..28e446fc5b80 100644 --- a/examples/widgets/radio_buttons.py +++ b/examples/widgets/radio_buttons.py @@ -45,7 +45,7 @@ def colorfunc(label): radio2.on_clicked(colorfunc) rax = fig.add_axes([0.05, 0.1, 0.15, 0.15], facecolor=axcolor) -radio3 = RadioButtons(rax, ('-', '--', '-.', 'steps', ':')) +radio3 = RadioButtons(rax, ('-', '--', '-.', ':')) def stylefunc(label):