From 3e766f93e497a9e760bb06fe7c88034ed7599604 Mon Sep 17 00:00:00 2001 From: yuchunzhou Date: Fri, 3 Jan 2020 17:47:11 +0800 Subject: [PATCH] remove some comments --- rest_framework/utils/encoders.py | 2 +- rest_framework/utils/json.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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):