From a8b70d251d238b4e6cfc7bb4296da15494f8dff3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 9 Feb 2015 13:19:34 -0500 Subject: [1.8.x] Sorted imports with isort; refs #23860. Backport of 0ed7d155635da9f79d4dd67e4889087d3673c6da from master --- tests/settings_tests/tests.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/settings_tests') diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py index 0befd18e29..4ed58be824 100644 --- a/tests/settings_tests/tests.py +++ b/tests/settings_tests/tests.py @@ -1,14 +1,16 @@ import os import sys -from types import ModuleType import unittest import warnings +from types import ModuleType from django.conf import LazySettings, Settings, settings from django.core.exceptions import ImproperlyConfigured from django.http import HttpRequest -from django.test import (SimpleTestCase, TransactionTestCase, TestCase, - modify_settings, override_settings, signals) +from django.test import ( + SimpleTestCase, TestCase, TransactionTestCase, modify_settings, + override_settings, signals, +) from django.utils import six from django.utils.encoding import force_text -- cgit v1.3