From 0ed7d155635da9f79d4dd67e4889087d3673c6da Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 28 Jan 2015 07:35:27 -0500 Subject: Sorted imports with isort; refs #23860. --- 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 8d39d6c1b1..6a444d56a9 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