mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
flake8
This commit is contained in:
parent
8a8314ce86
commit
a4bea50ad1
4 changed files with 4 additions and 3 deletions
|
@ -2,6 +2,7 @@ import ttk
|
|||
|
||||
from tkwidget import MfxDialog
|
||||
|
||||
|
||||
class BaseTileMfxDialog(MfxDialog):
|
||||
def _calcToolkit(self):
|
||||
return ttk
|
||||
|
|
|
@ -30,5 +30,6 @@ from pysollib.tile.basetilemfxdialog import BaseTileMfxDialog
|
|||
# *
|
||||
# ************************************************************************
|
||||
|
||||
|
||||
class ColorsDialog(BaseColorsDialog, BaseTileMfxDialog):
|
||||
pass
|
||||
|
|
|
@ -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):
|
||||
|
|
|
@ -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." );
|
||||
|
|
Loading…
Add table
Reference in a new issue