From 74b81a2bf8a04a795d47f016a10b74c3b57ae284 Mon Sep 17 00:00:00 2001 From: Anes Foufa Date: Tue, 28 Jul 2020 17:40:43 +0200 Subject: [PATCH] fix: fix import ordering --- rest_framework/fields.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rest_framework/fields.py b/rest_framework/fields.py index 6c0cc9436..b9f3798f1 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -38,8 +38,10 @@ from rest_framework.exceptions import ErrorDetail, ValidationError from rest_framework.settings import api_settings from rest_framework.utils import html, humanize_datetime, json, representation from rest_framework.utils.formatting import lazy_format -from rest_framework.validators import (ExclusiveMaxValueValidator, ExclusiveMinValueValidator, - ProhibitSurrogateCharactersValidator) +from rest_framework.validators import ( + ExclusiveMaxValueValidator, ExclusiveMinValueValidator, + ProhibitSurrogateCharactersValidator +) class empty: