diff --git a/01_Acey_Ducey/python/aceyducey.py b/01_Acey_Ducey/python/aceyducey.py index 374a0b9d..1d4a13e8 100644 --- a/01_Acey_Ducey/python/aceyducey.py +++ b/01_Acey_Ducey/python/aceyducey.py @@ -58,7 +58,7 @@ def get_card_name(number: int) -> str: def display_bankroll(bank_roll: int) -> None: """Print current bankroll""" - if BANK_ROLL > 0: + if bank_roll > 0: print("You now have %s dollars\n" % bank_roll)