mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-15 02:54:09 -04:00
2to3 on pysollib/games/[a-m]*.py
This commit is contained in:
parent
71bcecb4fe
commit
c6995e77e7
1 changed files with 1 additions and 1 deletions
|
@ -511,7 +511,7 @@ class Nestor(Game):
|
||||||
if j < 0:
|
if j < 0:
|
||||||
break
|
break
|
||||||
j += i*6
|
j += i*6
|
||||||
k = self.random.choice(range((i+1)*6, 52))
|
k = self.random.choice(list(range((i+1)*6, 52)))
|
||||||
cards[j], cards[k] = cards[k], cards[j]
|
cards[j], cards[k] = cards[k], cards[j]
|
||||||
cards.reverse()
|
cards.reverse()
|
||||||
return cards
|
return cards
|
||||||
|
|
Loading…
Add table
Reference in a new issue