From 1911598b29a6422984a4b03adaa4ad865261052a Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Mon, 24 Jun 2024 14:11:26 -0500 Subject: [PATCH] some small changes fixing two bugs --- common.py | 1 + main.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/common.py b/common.py index 2275391..a8de631 100644 --- a/common.py +++ b/common.py @@ -41,4 +41,5 @@ mapper_data = { "None": "Unknown", "nh/opi": "Native Hawaiian/Other Pacific Islander", "i": "Intern", + "u/o": "Unknown/Other", } diff --git a/main.py b/main.py index 5b2dc5f..afae99a 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] + "%"], ]