From e3f8b10f43440c740b5bb3b23517da415b85e277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Fri, 19 Jul 2024 17:12:41 +0200 Subject: [PATCH] remove a print --- jssg/management/commands/make-widgets.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jssg/management/commands/make-widgets.py b/jssg/management/commands/make-widgets.py index 32097d2..2ada800 100644 --- a/jssg/management/commands/make-widgets.py +++ b/jssg/management/commands/make-widgets.py @@ -15,7 +15,6 @@ def handle(self, *args, **options): for widget in (template_dir / "jinja2" / "widgets").rglob("*") : if widget.is_file() : with open(widget, "r") as w : - # print(findall(r"{% macro.*", w.read(), DOTALL)) file_content = w.read() for macro in Environment().parse(file_content).find_all(Macro) : n += 1