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

fix flake8 tests

This commit is contained in:
Shlomi Fish 2019-07-28 10:19:56 +03:00
parent 0abb801203
commit bc93657311

View file

@ -302,7 +302,8 @@ class Oonsoo_SequenceStack(Flower_OpenStack):
return self.isHanafudaSequence([stackcards[-1], cards[0]], 0)
def canMoveCards(self, cards):
return self.basicCanMoveCards(cards) and self.isHanafudaSequence(cards, 0)
return (self.basicCanMoveCards(cards) and
self.isHanafudaSequence(cards, 0))
class FlowerClock_RowStack(Flower_OpenStack):