From 2d222590e8dc56916ab3ee28b0b480cdd281e9f9 Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Mon, 15 Feb 2021 22:40:44 +0100
Subject: [PATCH] Remove left-over debug print

---
 dj_iconify/views.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dj_iconify/views.py b/dj_iconify/views.py
index 68501be..70f3e72 100644
--- a/dj_iconify/views.py
+++ b/dj_iconify/views.py
@@ -49,7 +49,6 @@ class IconifyJSONView(View):
         # Load icon set through Iconify types
         collection_file = os.path.join(JSON_ROOT, "json", f"{collection}.json")
         try:
-            print(icons)
             icon_set = IconifyJSON.from_file(collection_file, only=icons)
         except FileNotFoundError as exc:
             raise Http404(f"Icon collection {collection} not found") from exc
-- 
GitLab