Add missing linebreak after imports

This commit is contained in:
Tom Christie 2016-06-02 13:39:55 +01:00
parent 55484bb7a8
commit b91aaa56cb
2 changed files with 3 additions and 2 deletions

View File

@ -30,7 +30,9 @@ from django.utils.ipv6 import clean_ipv6_address
from django.utils.translation import ugettext_lazy as _ 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 get_remote_field, unicode_repr, unicode_to_repr from rest_framework.compat import (
get_remote_field, unicode_repr, unicode_to_repr
)
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

View File

@ -15,7 +15,6 @@ from django.utils import six
from rest_framework.compat import get_remote_field from rest_framework.compat import get_remote_field
FieldInfo = namedtuple('FieldResult', [ FieldInfo = namedtuple('FieldResult', [
'pk', # Model field instance 'pk', # Model field instance
'fields', # Dict of field name -> model field instance 'fields', # Dict of field name -> model field instance