removed prints for debugging

This commit is contained in:
2023-02-12 19:05:02 +10:00
parent 7551d9b63b
commit 0902ac4a8b

View File

@@ -159,11 +159,9 @@ class BlackJack:
while not validInput: while not validInput:
if play == "h": if play == "h":
self.hit() self.hit()
print(f"Hit {self.playerTurn}")
validInput = True validInput = True
elif play == "s": elif play == "s":
self.stand() self.stand()
print(f"stood {self.playerTurn}")
validInput = True validInput = True
playerStood = True playerStood = True