From 6f5d8daa6e2902a8551a7bb021c7eef168a56833 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Wed, 8 Apr 2020 20:10:59 +0200 Subject: [PATCH] fix(server): valid full test --- server/model/hands.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/model/hands.py b/server/model/hands.py index fbaa7fa..a4f2cac 100644 --- a/server/model/hands.py +++ b/server/model/hands.py @@ -76,11 +76,8 @@ def all_options() -> List[Hand]: hands.extend(singles) for b in brelans: for p in pairs: - if any([c in b.cards for c in p.cards]): # Invalid full - print(f"Invalid full: {b.cards}-{p.cards}") - else: + if not any([c in b.cards for c in p.cards]): # Valid full hands.append(Hand([*b.cards, *p.cards])) - return hands -- libgit2 0.27.0