Skip to content

Commit

Permalink
remove a print
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément committed Jul 19, 2024
1 parent 4da2c30 commit e3f8b10
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion jssg/management/commands/make-widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e3f8b10

Please sign in to comment.