From 205f38863162f1a27a31cdb32ca7e828e363a079 Mon Sep 17 00:00:00 2001 From: Aider Ibragimov Date: Sun, 19 Jul 2015 01:32:51 +0300 Subject: [PATCH] fix import sort order --- rest_framework/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/fields.py b/rest_framework/fields.py index 0ab1939f4..a2a4e3bf2 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -23,7 +23,7 @@ from rest_framework import ISO_8601 from rest_framework.compat import ( EmailValidator, MaxLengthValidator, MaxValueValidator, MinLengthValidator, MinValueValidator, OrderedDict, URLValidator, duration_string, - parse_duration, unicode_repr, unicode_to_repr, get_filepathfield + get_filepathfield, parse_duration, unicode_repr, unicode_to_repr ) from rest_framework.exceptions import ValidationError from rest_framework.settings import api_settings