change Chipes type from int to float

This commit is contained in:
2025-10-27 17:38:51 +01:00
parent 243681b11c
commit c31fccaf88

View File

@@ -5,7 +5,7 @@ from pyjack.deck import Deck
class Player:
"""Sets up the player's name, starting chips, and a new Hand object."""
def __init__(self, chips: int) -> None:
def __init__(self, chips: float) -> None:
self.hand = Hand()
self.chips = chips