1
0
Fork 0
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:
Shlomi Fish 2017-05-14 18:01:49 +03:00
parent 71bcecb4fe
commit c6995e77e7

View file

@ -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