1from pysollib.tk.tkwidget import MfxDialog
2
3from six.moves import tkinter
4
5
6class BaseTkMfxDialog(MfxDialog):
7    def _calcToolkit(self):
8        return tkinter
9
10    def _calc_MfxDialog(self):
11        return MfxDialog
12