mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -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:
|
||||
break
|
||||
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.reverse()
|
||||
return cards
|
||||
|
|
Loading…
Add table
Reference in a new issue