From c4f1c98572e756d378e56e118124901d49b1032c Mon Sep 17 00:00:00 2001 From: Aider Ibragimov Date: Sun, 19 Jul 2015 01:22:57 +0300 Subject: [PATCH] fix lint issues --- rest_framework/fields.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rest_framework/fields.py b/rest_framework/fields.py index bf3930724..0ab1939f4 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -8,14 +8,11 @@ import inspect import re import uuid -import django from django.conf import settings from django.core.exceptions import ValidationError as DjangoValidationError from django.core.exceptions import ObjectDoesNotExist from django.core.validators import RegexValidator, ip_address_validators -from django.forms import ( - ImageField as DjangoImageField, FilePathField as DjangoFilePathField -) +from django.forms import ImageField as DjangoImageField from django.utils import six, timezone from django.utils.dateparse import parse_date, parse_datetime, parse_time from django.utils.encoding import is_protected_type, smart_text