mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
2to3 on pysollib/games/[a-p]*.py
This commit is contained in:
parent
fd8a73610c
commit
49ff3488fe
2 changed files with 3 additions and 2 deletions
|
@ -64,7 +64,8 @@ class PasDeDeux_Hint(AbstractHint):
|
|||
for r in rows:
|
||||
r1_d = self.getDistance(r, r.cards[-1])
|
||||
column, row = r.id % 13, r.id / 13
|
||||
stack_ids = range(column, 52, 13) + range(13*row, 13*row+13)
|
||||
stack_ids = list(range(column, 52, 13)) + \
|
||||
list(range(13*row, 13*row+13))
|
||||
for i in stack_ids:
|
||||
t = self.game.s.rows[i]
|
||||
if t is r:
|
||||
|
|
|
@ -574,7 +574,7 @@ registerGame(GameInfo(7, PictureGallery, "Picture Gallery",
|
|||
altnames=("Die Bildgallerie", "Mod-3")))
|
||||
registerGame(GameInfo(397, GreatWheel, "Great Wheel",
|
||||
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED,
|
||||
ranks=range(12) # without Kings
|
||||
ranks=list(range(12)) # without Kings
|
||||
))
|
||||
registerGame(GameInfo(398, MountOlympus, "Mount Olympus",
|
||||
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))
|
||||
|
|
Loading…
Add table
Reference in a new issue