diff --git a/src/pyjack/player.py b/src/pyjack/player.py index 15ab853..e331354 100644 --- a/src/pyjack/player.py +++ b/src/pyjack/player.py @@ -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