From 68992839c21734279f08ddf960dbd65ad094eb80 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sat, 21 Dec 2024 16:30:17 -0300 Subject: [PATCH] refactor: remove debug prints --- app/apps/common/templatetags/formats.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/apps/common/templatetags/formats.py b/app/apps/common/templatetags/formats.py index 9a3492c..34d8e60 100644 --- a/app/apps/common/templatetags/formats.py +++ b/app/apps/common/templatetags/formats.py @@ -7,11 +7,9 @@ register = template.Library() @register.simple_tag def get_thousand_separator(): - print(get_format("THOUSAND_SEPARATOR")) return get_format("THOUSAND_SEPARATOR") @register.simple_tag def get_decimal_separator(): - print(get_format("DECIMAL_SEPARATOR")) return get_format("DECIMAL_SEPARATOR")