summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-10-24 17:07:50 +0200
committerClaude Paroz <claude@2xlibre.net>2014-10-24 17:07:50 +0200
commitd49183e4bed8ecf21faad44372ea15ff00f781b5 (patch)
tree9e28062b023bac7302e6e9b92f77f1e2738cf806
parent45db842c9bcd6f9afe274c120f43847657473839 (diff)
Removed unused import
-rw-r--r--django/contrib/gis/tests/gis_migrations/test_commands.py4
1 files changed, 1 insertions, 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 f85a91532d..bb0186fad5 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")