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/template_loader/tests.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tests/template_loader') diff --git a/tests/template_loader/tests.py b/tests/template_loader/tests.py index 12bfa1b543..a4a4542f32 100644 --- a/tests/template_loader/tests.py +++ b/tests/template_loader/tests.py @@ -1,8 +1,9 @@ -from django.test import override_settings, SimpleTestCase -from django.test.client import RequestFactory from django.template import TemplateDoesNotExist from django.template.loader import ( - get_template, select_template, render_to_string) + get_template, render_to_string, select_template, +) +from django.test import SimpleTestCase, override_settings +from django.test.client import RequestFactory @override_settings(TEMPLATES=[{ -- cgit v1.3