From 822c4748671a3ed02b6ed2a612e45b2e439897f2 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Fri, 26 Aug 2022 20:45:00 +0100 Subject: [PATCH] Remove some debug statements --- core/views/helpers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/views/helpers.py b/core/views/helpers.py index d8496b2..85052f7 100644 --- a/core/views/helpers.py +++ b/core/views/helpers.py @@ -213,14 +213,12 @@ def hash_lookup(user, data_dict): if data_dict[key]: if isinstance(data_dict[key], str): if hash in data_dict[key]: - print("Replacing", data_dict[key], "with", total[hash]) data_dict[key] = data_dict[key].replace( f"{hash}", total[hash] ) elif isinstance(data_dict[key], dict): for k2, v2 in data_dict[key].items(): if hash in v2: - print("Replacing", v2, "with", total[hash]) data_dict[key][k2] = v2.replace(f"{hash}", total[hash])