X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d56cebe7a497773d8753ea2ab874c4445bac18dc..1a19e369fbce12ce4d8097fc08609a436748a6ed:/wxPython/demo/wxChoice.py?ds=inline

diff --git a/wxPython/demo/wxChoice.py b/wxPython/demo/wxChoice.py
index da6fa7b2a0..9cd83ce3b2 100644
--- a/wxPython/demo/wxChoice.py
+++ b/wxPython/demo/wxChoice.py
@@ -15,8 +15,7 @@ class TestChoice(wxPanel):
                                wxPoint(15, 10))
 
         wxStaticText(self, -1, "Select one:", wxPoint(15, 50), wxSize(75, 20))
-        self.ch = wxChoice(self, 40, (80, 50), (95, 125),
-                 choices = sampleList)
+        self.ch = wxChoice(self, 40, (80, 50), choices = sampleList)
         EVT_CHOICE(self, 40, self.EvtChoice)