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 12:26:18 +03:00
parent 0876e08547
commit 3796c7c985
2 changed files with 2 additions and 3 deletions

View file

@ -24,7 +24,6 @@
__all__ = ['EditTextDialog']
# imports
## import os, sys, Tkinter
# PySol imports
@ -35,6 +34,6 @@ from tkwidget import MfxDialog
# *
# ************************************************************************
class EditTextDialog(MfxDialog):
pass

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/[cm]*/*.py ./pysollib/pysolgtk/[a-c]*.py') );
grep { not($_ eq './pysollib/pysoltk.py') } glob('./pysollib/*.py ./pysollib/[cm]*/*.py ./pysollib/pysolgtk/[a-e]*.py') );
# TEST
eq_or_diff( scalar(`$cmd`), '', "flake8 is happy with the code." );