Fixed import order settings

This commit is contained in:
Luis San Pablo 2015-12-16 18:37:50 -06:00
parent dab6bf4b1a
commit 62e2a9706f
2 changed files with 2 additions and 1 deletions

View File

@ -17,8 +17,8 @@ This module provides the `api_setting` object, that is used to access
REST framework settings, checking for user settings first, then falling
back to the defaults.
"""
import warnings
from __future__ import unicode_literals
import warnings
from django.conf import settings
from django.test.signals import setting_changed

View File

@ -1,4 +1,5 @@
from __future__ import unicode_literals
import warnings
from django.test import TestCase