Skip to content

Commit b341968

Browse files
committed
Drop print statements
1 parent e5e35c0 commit b341968

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

django_esm/templatetags/esm.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,10 @@ def _resolve_importmap_urls(raw_importmap):
3737
@register.simple_tag
3838
def importmap():
3939
global importmap_json
40-
print(not importmap_json or settings.DEBUG)
4140
if not importmap_json or settings.DEBUG:
4241
with (
4342
pathlib.Path(conf.get_settings().STATIC_DIR) / "importmap.json"
4443
).open() as f:
4544
raw_importmap = json.load(f)
4645
importmap_json = _resolve_importmap_urls(raw_importmap)
47-
print(importmap_json)
4846
return mark_safe(importmap_json) # nosec

0 commit comments

Comments
 (0)