Skip to content
Prev Previous commit
Next Next commit
Add missing linebreak after imports
  • Loading branch information
lovelydinosaur committed Jun 2, 2016
commit b91aaa56cbe5cae8840304944bcae90787409665
4 changes: 3 additions & 1 deletion rest_framework/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
from django.utils.translation import ugettext_lazy as _

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.settings import api_settings
from rest_framework.utils import html, humanize_datetime, representation
Expand Down
1 change: 0 additions & 1 deletion rest_framework/utils/model_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

from rest_framework.compat import get_remote_field


FieldInfo = namedtuple('FieldResult', [
'pk', # Model field instance
'fields', # Dict of field name -> model field instance
Expand Down