Switch to ujson and remove debugging statements

This commit is contained in:
2022-09-05 07:20:30 +01:00
parent 62455409e6
commit c2d78dc482
5 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import json
import ujson
import urllib
import uuid
@@ -97,7 +97,7 @@ def make_graph(results):
"date": date,
}
)
return json.dumps(graph)
return ujson.dumps(graph)
def drilldown_search(request, return_context=False, template=None):