Projet

Général

Profil

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

Benjamin Dauvergne, 05 novembre 2019 18:54

Télécharger (885 octets)

Voir les différences:

Subject: [PATCH 09/11] 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
-