From d49183e4bed8ecf21faad44372ea15ff00f781b5 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 24 Oct 2014 17:07:50 +0200 Subject: [PATCH] Removed unused import --- django/contrib/gis/tests/gis_migrations/test_commands.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/django/contrib/gis/tests/gis_migrations/test_commands.py b/django/contrib/gis/tests/gis_migrations/test_commands.py index f85a91532d4..bb0186fad53 100644 --- a/django/contrib/gis/tests/gis_migrations/test_commands.py +++ b/django/contrib/gis/tests/gis_migrations/test_commands.py @@ -2,9 +2,7 @@ from __future__ import unicode_literals from django.core.management import call_command from django.db import connection -from django.test import ( - override_settings, skipUnlessDBFeature, TransactionTestCase -) +from django.test import skipUnlessDBFeature, TransactionTestCase @skipUnlessDBFeature("gis_enabled")