mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-08-07 22:04:48 +03:00
Add missing linebreak after imports
This commit is contained in:
parent
55484bb7a8
commit
b91aaa56cb
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user