deprecation

This commit is contained in:
blitzmann
2017-11-13 22:29:58 -05:00
parent cc9b6ea04b
commit 979bc494f0

View File

@@ -3,9 +3,9 @@ import wx
from gui.bitmap_loader import BitmapLoader from gui.bitmap_loader import BitmapLoader
class BaseValidator(wx.PyValidator): class BaseValidator(wx.Validator):
def __init__(self): def __init__(self):
wx.PyValidator.__init__(self) wx.Validator.__init__(self)
def Validate(self, win): def Validate(self, win):
raise NotImplementedError() raise NotImplementedError()