From 778fc16744b65d5d71a9ff8f6d690746fafc36a4 Mon Sep 17 00:00:00 2001 From: Joshua Randall <jranda10@emich.edu> Date: Tue, 22 Oct 2024 09:52:22 -0400 Subject: [PATCH] added late penalty score in string --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 9c079cd..cb05610 100644 --- a/main.py +++ b/main.py @@ -159,7 +159,7 @@ def boolResult(boolean): if boolean: return f'{Fore.green}Yes{Style.reset}' else: - return f'{Fore.red}No{Style.reset}' + return f'{Fore.red}No{Style.reset} -%s' % (latePenalty) -- GitLab