Skip to content

Commit 5eec603

Browse files
committed
disable print
1 parent d40e446 commit 5eec603

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adminlteui/templatetags/adminlte_list.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def adminlte_admin_list_filter(cl, spec):
4040
tpl = get_template(spec.template)
4141
new_choice = []
4242

43-
print(spec.lookup_kwarg)
44-
print(list(spec.choices(cl)))
43+
# print(spec.lookup_kwarg)
44+
# print(list(spec.choices(cl)))
4545

4646
for choice in list(spec.choices(cl)):
4747
qs = (urllib.parse.parse_qs(choice.get('query_string')))
@@ -54,7 +54,7 @@ def adminlte_admin_list_filter(cl, spec):
5454
'display': choice.get('display'),
5555
'selected': choice.get('selected')})
5656

57-
print(new_choice)
57+
# print(new_choice)
5858

5959
return tpl.render({
6060
'title': spec.title,

0 commit comments

Comments
 (0)