mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
flake8
This commit is contained in:
parent
e54fedae2b
commit
d71a5d0a51
2 changed files with 12 additions and 8 deletions
|
@ -24,20 +24,25 @@
|
|||
__all__ = []
|
||||
|
||||
# imports
|
||||
import sys
|
||||
|
||||
# PySol imports
|
||||
from pysollib.gamedb import registerGame, GameInfo, GI
|
||||
from pysollib.util import *
|
||||
from pysollib.stack import *
|
||||
from pysollib.game import Game
|
||||
from pysollib.layout import Layout
|
||||
from pysollib.hint import AbstractHint, DefaultHint, CautiousDefaultHint
|
||||
|
||||
# from pysollib.util import ACE
|
||||
|
||||
from pysollib.stack import \
|
||||
OpenStack, \
|
||||
WasteStack, \
|
||||
WasteTalonStack, \
|
||||
StackWrapper
|
||||
|
||||
# ************************************************************************
|
||||
# * Eiffel Tower
|
||||
# ************************************************************************
|
||||
|
||||
|
||||
class EiffelTower_RowStack(OpenStack):
|
||||
def __init__(self, x, y, game):
|
||||
OpenStack.__init__(self, x, y, game, max_move=0, max_accept=1)
|
||||
|
@ -113,6 +118,5 @@ class StrictEiffelTower(EiffelTower):
|
|||
# register the game
|
||||
registerGame(GameInfo(16, EiffelTower, "Eiffel Tower",
|
||||
GI.GT_PAIRING_TYPE, 2, 0, GI.SL_MOSTLY_LUCK))
|
||||
##registerGame(GameInfo(801, StrictEiffelTower, "Strict Eiffel Tower",
|
||||
## GI.GT_PAIRING_TYPE, 2, 0))
|
||||
|
||||
# registerGame(GameInfo(801, StrictEiffelTower, "Strict Eiffel Tower",
|
||||
# GI.GT_PAIRING_TYPE, 2, 0))
|
||||
|
|
|
@ -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' or $_ eq './pysollib/tile/ttk.py') } glob('./pysollib/*.py ./pysollib/[cmpuw]*/*.py ./pysollib/tile/*.py ./pysollib/ui/tktile/*.py ./pysollib/games/[a-dy-z]*.py') );
|
||||
grep { not($_ eq './pysollib/pysoltk.py' or $_ eq './pysollib/tile/ttk.py') } glob('./pysollib/*.py ./pysollib/[cmpuw]*/*.py ./pysollib/tile/*.py ./pysollib/ui/tktile/*.py ./pysollib/games/[a-ey-z]*.py') );
|
||||
|
||||
# TEST
|
||||
eq_or_diff( scalar(`$cmd`), '', "flake8 is happy with the code." );
|
||||
|
|
Loading…
Add table
Reference in a new issue