From 61540f4d88607149db0c6bcda6b385521718a4cb Mon Sep 17 00:00:00 2001 From: Chris Guo Date: Thu, 19 Sep 2019 10:34:33 +0800 Subject: [PATCH] style: modify import --- rest_framework/parsers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rest_framework/parsers.py b/rest_framework/parsers.py index fc4eb1428..e24429776 100644 --- a/rest_framework/parsers.py +++ b/rest_framework/parsers.py @@ -11,8 +11,9 @@ from django.conf import settings from django.core.files.uploadhandler import StopFutureHandlers from django.http import QueryDict from django.http.multipartparser import ChunkIter -from django.http.multipartparser import \ +from django.http.multipartparser import ( MultiPartParser as DjangoMultiPartParser +) from django.http.multipartparser import MultiPartParserError, parse_header from django.utils.encoding import force_str