From d233b16a014ff8d3ed0807eea36af58873ed311a Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 18 Oct 2019 10:54:28 +0200 Subject: [PATCH 5/8] utils: load more json related symbols --- passerelle/utils/json.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/passerelle/utils/json.py b/passerelle/utils/json.py index 19227493..e4644a0e 100644 --- a/passerelle/utils/json.py +++ b/passerelle/utils/json.py @@ -29,7 +29,11 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -from __future__ import unicode_literals +from __future__ import unicode_literals, absolute_import + +from json import load, loads, dump, dumps + +from jsonschema import validate, ValidationError from django.utils import six -- 2.23.0