From f3ed0e3c8fab87b186c72d5ffed47a9d984c6b6d Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Mon, 24 Jun 2024 04:58:02 -0500 Subject: [PATCH] add a percentage --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index afae99a..5b2dc5f 100644 --- a/main.py +++ b/main.py @@ -231,7 +231,7 @@ def generate_final_report_data(ws): [(total_girls + total_boys) / total_sites, ""], ["", ""], ["Percentages of Relevant Demographics", ""], - ["Girls", str(total_girls / total_children * 100)[:5] + "%"], + ["Girls", str(total_girls / total_children * 100)[:5] + "% + "%""], ["Hispanic", str(int(ethnicity_breakdown[0][1]) / total_children * 100)[:5] + "%"], ["People of Color", str(int(race_breakdown[3][1]) / total_children * 100)[:5] + "%"], ]