From 335c9c94acf263901fb023404408880245b0c4b4 Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Tue, 20 Aug 2019 08:54:41 +0100 Subject: Simplified imports from django.db and django.contrib.gis.db. --- tests/db_utils/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/db_utils') diff --git a/tests/db_utils/tests.py b/tests/db_utils/tests.py index db58b58f33..2a1cec0365 100644 --- a/tests/db_utils/tests.py +++ b/tests/db_utils/tests.py @@ -2,8 +2,8 @@ import unittest from django.core.exceptions import ImproperlyConfigured -from django.db import DEFAULT_DB_ALIAS, connection -from django.db.utils import ConnectionHandler, ProgrammingError, load_backend +from django.db import DEFAULT_DB_ALIAS, ProgrammingError, connection +from django.db.utils import ConnectionHandler, load_backend from django.test import SimpleTestCase, TestCase -- cgit v1.2.1