mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Tested on ci. See https://github.com/PyCQA/flake8-import-order . In the process did some other cleanups and https://en.wikipedia.org/wiki/Code_refactoring .
11 lines
218 B
Python
11 lines
218 B
Python
from pysollib.tk.tkwidget import MfxDialog
|
|
|
|
from six.moves import tkinter
|
|
|
|
|
|
class BaseTkMfxDialog(MfxDialog):
|
|
def _calcToolkit(self):
|
|
return tkinter
|
|
|
|
def _calc_MfxDialog(self):
|
|
return MfxDialog
|