Skip to content

Commit bee950a

Browse files
committed
stop relying on ujson (fix #589, #587, #507)
1 parent a39d73a commit bee950a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

flask_restplus/representations.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import unicode_literals, absolute_import
33

4-
try:
5-
from ujson import dumps
6-
except ImportError:
7-
from json import dumps
4+
from json import dumps
85

96
from flask import make_response, current_app
107

0 commit comments

Comments
 (0)