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