Fixed a typo

This commit is contained in:
Manuel Cortez 2019-04-26 17:51:18 -05:00
parent 20c3df6be2
commit e6087f3818

View File

@ -135,7 +135,7 @@ class mainLoopObject(wx.App):
def run(self):
self.app.MainLoop()
class selectableList(wx.ListCtrl, listmix.CheckListCtrlMixin):
class selectableBaseList(wx.ListCtrl, listmix.CheckListCtrlMixin):
def __init__(self, *args, **kwargs):
wx.ListCtrl.__init__(self, *args, **kwargs)
listmix.CheckListCtrlMixin.__init__(self)