(self)
| 271 | return False |
| 272 | |
| 273 | def _is_straight(self) -> bool: |
| 274 | for i in range(4): |
| 275 | if self._card_values[i] - self._card_values[i + 1] != 1: |
| 276 | return False |
| 277 | return True |
| 278 | |
| 279 | def _is_same_kind(self) -> int: |
| 280 | # Kind Values for internal use: |
no outgoing calls