mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-15 02:54:09 -04:00
fix flake8 tests
This commit is contained in:
parent
0abb801203
commit
bc93657311
1 changed files with 2 additions and 1 deletions
|
@ -302,7 +302,8 @@ class Oonsoo_SequenceStack(Flower_OpenStack):
|
||||||
return self.isHanafudaSequence([stackcards[-1], cards[0]], 0)
|
return self.isHanafudaSequence([stackcards[-1], cards[0]], 0)
|
||||||
|
|
||||||
def canMoveCards(self, cards):
|
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):
|
class FlowerClock_RowStack(Flower_OpenStack):
|
||||||
|
|
Loading…
Add table
Reference in a new issue