Projet

Général

Profil

0006-utils-load-more-json-related-symbols.patch

Benjamin Dauvergne, 24 octobre 2019 23:05

Télécharger (883 octets)

Voir les différences:

Subject: [PATCH 6/8] utils: load more json related symbols

 passerelle/utils/json.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
passerelle/utils/json.py
29 29
# You should have received a copy of the GNU Affero General Public License
30 30
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
31 31

  
32
from __future__ import unicode_literals
32
from __future__ import unicode_literals, absolute_import
33

  
34
from json import load, loads, dump, dumps
35

  
36
from jsonschema import validate, ValidationError
33 37

  
34 38
from django.utils import six
35 39

  
36
-