diff options
Diffstat (limited to 'jfr_playoff/gui/variables.py')
-rw-r--r-- | jfr_playoff/gui/variables.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/jfr_playoff/gui/variables.py b/jfr_playoff/gui/variables.py index ff65207..9dcbff2 100644 --- a/jfr_playoff/gui/variables.py +++ b/jfr_playoff/gui/variables.py @@ -27,4 +27,6 @@ class NotifyIntVar(NotifyVar, tk.IntVar): pass class NotifyNumericVar(NumericVar, NotifyVar): - pass + def __init__(self, *args, **kwargs): + NotifyVar.__init__(self, *args, **kwargs) + NumericVar.__init__(self, *args, **kwargs) |