Skip to content
Snippets Groups Projects
Verified Commit 2d222590 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Remove left-over debug print

parent 3f91f2ac
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,6 @@ class IconifyJSONView(View): ...@@ -49,7 +49,6 @@ class IconifyJSONView(View):
# Load icon set through Iconify types # Load icon set through Iconify types
collection_file = os.path.join(JSON_ROOT, "json", f"{collection}.json") collection_file = os.path.join(JSON_ROOT, "json", f"{collection}.json")
try: try:
print(icons)
icon_set = IconifyJSON.from_file(collection_file, only=icons) icon_set = IconifyJSON.from_file(collection_file, only=icons)
except FileNotFoundError as exc: except FileNotFoundError as exc:
raise Http404(f"Icon collection {collection} not found") from exc raise Http404(f"Icon collection {collection} not found") from exc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment