From 2eb7a16fd16c9c1c0eb5d1f3197de57106bdb98a Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Tue, 18 Aug 2015 12:58:17 +0300 Subject: [PATCH] Fixed lint errors. --- rest_framework/fields.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rest_framework/fields.py b/rest_framework/fields.py index 20044bfca..5d0bd4894 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -23,9 +23,9 @@ from django.utils.translation import ugettext_lazy as _ 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, - lru_cache) + MinValueValidator, OrderedDict, URLValidator, duration_string, lru_cache, + parse_duration, unicode_repr, unicode_to_repr +) from rest_framework.exceptions import ValidationError from rest_framework.settings import api_settings from rest_framework.utils import html, humanize_datetime, representation