diff --git a/rest_framework/utils/encoders.py b/rest_framework/utils/encoders.py index 70d3395d3..b69fa3281 100644 --- a/rest_framework/utils/encoders.py +++ b/rest_framework/utils/encoders.py @@ -3,7 +3,7 @@ Helper classes for parsers. """ import datetime import decimal -import ujson as json # noqa +import ujson as json import uuid from django.db.models.query import QuerySet diff --git a/rest_framework/utils/json.py b/rest_framework/utils/json.py index b85aa9ffe..72adefed7 100644 --- a/rest_framework/utils/json.py +++ b/rest_framework/utils/json.py @@ -6,7 +6,7 @@ spec-compliant encoding/decoding. Support for non-standard features should be handled by users at the renderer and parser layer. """ import functools -import ujson as json # noqa +import ujson as json def strict_constant(o):