Fixed lint errors.

This commit is contained in:
Omer Katz 2015-08-18 12:58:17 +03:00
parent b8c71872da
commit 2eb7a16fd1

View File

@ -23,9 +23,9 @@ from django.utils.translation import ugettext_lazy as _
from rest_framework import ISO_8601 from rest_framework import ISO_8601
from rest_framework.compat import ( from rest_framework.compat import (
EmailValidator, MaxLengthValidator, MaxValueValidator, MinLengthValidator, EmailValidator, MaxLengthValidator, MaxValueValidator, MinLengthValidator,
MinValueValidator, OrderedDict, URLValidator, duration_string, MinValueValidator, OrderedDict, URLValidator, duration_string, lru_cache,
parse_duration, unicode_repr, unicode_to_repr, parse_duration, unicode_repr, unicode_to_repr
lru_cache) )
from rest_framework.exceptions import ValidationError from rest_framework.exceptions import ValidationError
from rest_framework.settings import api_settings from rest_framework.settings import api_settings
from rest_framework.utils import html, humanize_datetime, representation from rest_framework.utils import html, humanize_datetime, representation