(self)
| 251 | return 14 + self._is_same_kind() |
| 252 | |
| 253 | def _is_flush(self) -> bool: |
| 254 | return len(self._card_suit) == 1 |
| 255 | |
| 256 | def _is_five_high_straight(self) -> bool: |
| 257 | # If a card is a five high straight (low ace) change the location of |
no outgoing calls