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