1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
This commit is contained in:
Shlomi Fish 2017-04-17 14:32:12 +03:00
parent 8a8314ce86
commit a4bea50ad1
4 changed files with 4 additions and 3 deletions

View file

@ -2,6 +2,7 @@ import ttk
from tkwidget import MfxDialog
class BaseTileMfxDialog(MfxDialog):
def _calcToolkit(self):
return ttk

View file

@ -30,5 +30,6 @@ from pysollib.tile.basetilemfxdialog import BaseTileMfxDialog
# *
# ************************************************************************
class ColorsDialog(BaseColorsDialog, BaseTileMfxDialog):
pass

View file

@ -24,8 +24,6 @@
__all__ = ['EditTextDialog']
# imports
import Tkinter
import ttk
# Toolkit imports
from pysollib.tile.basetilemfxdialog import BaseTileMfxDialog
@ -35,6 +33,7 @@ from pysollib.ui.tktile.edittextdialog import BaseEditTextDialog
# *
# ************************************************************************
class EditTextDialog(BaseEditTextDialog, BaseTileMfxDialog):
def _calc_Resizable(self):

View file

@ -10,7 +10,7 @@ use String::ShellQuote qw/ shell_quote /;
# my $cmd = shell_quote( 'flake8', '.' );
my $cmd = shell_quote( 'flake8',
grep { not($_ eq './pysollib/pysoltk.py') } glob('./pysollib/*.py ./pysollib/[cmp]*/*.py') );
grep { not($_ eq './pysollib/pysoltk.py') } glob('./pysollib/*.py ./pysollib/[cmp]*/*.py ./pysollib/tile/[b-e]*.py') );
# TEST
eq_or_diff( scalar(`$cmd`), '', "flake8 is happy with the code." );