Probably beginner python/wxpython question

class FileSelectionBox(wx.combo.ComboCtrl):
    def __init__(self, *args, **kw)
        self.cc1 = kwargs['cc1']
  del kwargs['cc1']

        wx.combo.ComboCtrl.__init__(self, *args, **kw)
        (.......)

class TestPanel(wx.Panel):
    def __init__(self, parent):
        (.....)
        cc = FileSelectionBox(self, cc1="Test", size=(250,-1))

···

--

Bobby R. Ward
------------------------
bobbyrward@gmail.com