From c538f8ac3439ad80e058cb7d952ee6933225dd7d Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Wed, 12 Oct 2022 21:22:39 -0500 Subject: [PATCH] Fix capitalization --- solution-2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solution-2.py b/solution-2.py index 3340f35..aa96650 100755 --- a/solution-2.py +++ b/solution-2.py @@ -44,7 +44,7 @@ class ProgressBar: def __str__(self): return self.render() -count = int(input(f"total birthdays: ")) +count = int(input(f"Total birthdays: ")) matches = 0 prog_bar = ProgressBar(size=MAX_SIMULATIONS, prompt="Running simulations")