1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

fix some sorting regressions in flake8 commits

This commit is contained in:
Shlomi Fish 2017-04-18 22:34:33 +03:00
parent d0b79131ab
commit cb646c3155
5 changed files with 7 additions and 6 deletions

View file

@ -606,7 +606,7 @@ class Formic(TamOShanter):
cards.remove(c)
if len(suits) == 4:
break
top_cards.sort(key=lambda x: x.suit) # sort by suit
top_cards.sort(key=lambda x: -x.suit) # sort by suit
return cards+top_cards
def startGame(self):

View file

@ -406,7 +406,7 @@ class SeniorWrangler(Game):
ranks.append(c.rank)
cards.remove(c)
top.append(c)
top.sort(key=lambda x: x.rank)
top.sort(key=lambda x: -x.rank)
return cards+top
def startGame(self):
@ -470,7 +470,7 @@ class SPatience(Game):
ranks.append(c.rank)
cards.remove(c)
top.append(c)
top.sort(key=lambda x: x.rank)
top.sort(key=lambda x: -x.rank)
return cards+top[7:]+top[:7]
def startGame(self):

View file

@ -122,7 +122,7 @@ class GrandfathersClock(Game):
clocks.append(c)
cards.remove(c)
# sort clocks reverse by rank
clocks.sort(key=lambda x: x.rank)
clocks.sort(key=lambda x: -x.rank)
return clocks + cards
def startGame(self):
@ -471,7 +471,7 @@ class BigBen(Game):
if not t:
break
# sort clocks reverse by rank
clocks.sort(key=lambda x: x.rank)
clocks.sort(key=lambda x: -x.rank)
return cards+clocks
def startGame(self):

View file

@ -553,7 +553,7 @@ class VirginiaReel(RoyalParade):
bottom_cards.append(c)
if len(ranks) == 3:
break
bottom_cards = sorted(bottom_cards, key=lambda x: x.rank)[::-1]
bottom_cards.sort(key=lambda x: -x.rank)
return cards+bottom_cards
def startGame(self):

View file

@ -92,6 +92,7 @@ def by_category():
games_by_cat[gt] = 1
games_by_cat_list = [(i, j) for i, j in games_by_cat.items()]
games_by_cat_list.sort(key=lambda x: x[1])
games_by_cat_list = games_by_cat_list[::-1]
# print '<table border="2"><tr><th>Name</th><th>Number</th></tr>'
# for i in games_by_cat_list:
# print '<tr><td>%s</td><td>%s</td></tr>' % i