From c389aeb051a5b2b75160480ae09aec99385b531f Mon Sep 17 00:00:00 2001 From: Luis San Pablo Date: Wed, 16 Dec 2015 18:46:23 -0600 Subject: [PATCH] Lint import ordring --- rest_framework/settings.py | 1 + tests/test_settings.py | 1 + 2 files changed, 2 insertions(+) diff --git a/rest_framework/settings.py b/rest_framework/settings.py index af4aaa73c..9679cad59 100644 --- a/rest_framework/settings.py +++ b/rest_framework/settings.py @@ -18,6 +18,7 @@ REST framework settings, checking for user settings first, then falling back to the defaults. """ from __future__ import unicode_literals + import warnings from django.conf import settings diff --git a/tests/test_settings.py b/tests/test_settings.py index b9953c8e2..658c61997 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -1,4 +1,5 @@ from __future__ import unicode_literals + import warnings from django.test import TestCase