mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
2to3 on pysollib/games/[a-r]*.py
This commit is contained in:
parent
49ff3488fe
commit
df6e509409
1 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ from pysollib.game import Game
|
|||
from pysollib.layout import Layout
|
||||
from pysollib.hint import DefaultHint, CautiousDefaultHint
|
||||
|
||||
from unionsquare import UnionSquare_Foundation
|
||||
from pysollib.games.unionsquare import UnionSquare_Foundation
|
||||
|
||||
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, JACK, KING, NO_RANK
|
||||
|
||||
|
@ -1383,11 +1383,11 @@ registerGame(GameInfo(97, Carpet, "Carpet",
|
|||
GI.GT_1DECK_TYPE, 1, 0, GI.SL_MOSTLY_LUCK))
|
||||
registerGame(GameInfo(391, BritishConstitution, "British Constitution",
|
||||
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED,
|
||||
ranks=range(11), # without Queens and Kings
|
||||
ranks=list(range(11)), # without Queens and Kings
|
||||
altnames=("Constitution",)))
|
||||
registerGame(GameInfo(392, NewBritishConstitution, "New British Constitution",
|
||||
GI.GT_2DECK_TYPE | GI.GT_ORIGINAL, 2, 0, GI.SL_BALANCED,
|
||||
ranks=range(11) # without Queens and Kings
|
||||
ranks=list(range(11)) # without Queens and Kings
|
||||
))
|
||||
registerGame(GameInfo(443, Twenty, "Twenty",
|
||||
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))
|
||||
|
|
Loading…
Add table
Reference in a new issue