From 499ed62bce2e13aaf3e4395931b4683d05fcb473 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Fri, 4 Oct 2024 11:00:26 -0700 Subject: [PATCH] removed print debug line --- coldcallbot-manual.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coldcallbot-manual.py b/coldcallbot-manual.py index ac46bc1..61c2010 100755 --- a/coldcallbot-manual.py +++ b/coldcallbot-manual.py @@ -33,7 +33,7 @@ with open(config["student_info_file"], 'r') as f: preferred_pronouns = {} for row in DictReader(f, delimiter="\t"): preferred_pronouns[row[config["unique_name_rowname"]]] = row["Preferred pronouns"] -print(preferred_pronouns) +# print(preferred_pronouns) missing_today = [x for x in get_missing(current_time)] # print("Missing Today: ", missing_today) # useful for debug -- 2.39.5