mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	[1.8.x] Sorted imports with isort; refs #23860.
Backport of 0ed7d15563 from master
			
			
This commit is contained in:
		| @@ -4,26 +4,30 @@ from __future__ import unicode_literals | ||||
|  | ||||
| import copy | ||||
| import datetime | ||||
| from decimal import Decimal, Rounded | ||||
| import re | ||||
| import threading | ||||
| import unittest | ||||
| import warnings | ||||
| from decimal import Decimal, Rounded | ||||
|  | ||||
| from django.conf import settings | ||||
| from django.core.exceptions import ImproperlyConfigured | ||||
| from django.core.management.color import no_style | ||||
| from django.db import (connection, connections, DEFAULT_DB_ALIAS, | ||||
|     DatabaseError, IntegrityError, reset_queries, transaction) | ||||
| from django.db import ( | ||||
|     DEFAULT_DB_ALIAS, DatabaseError, IntegrityError, connection, connections, | ||||
|     reset_queries, transaction, | ||||
| ) | ||||
| from django.db.backends.base.base import BaseDatabaseWrapper | ||||
| from django.db.backends.signals import connection_created | ||||
| from django.db.backends.postgresql_psycopg2 import version as pg_version | ||||
| from django.db.backends.utils import format_number, CursorWrapper | ||||
| from django.db.models import Sum, Avg, Variance, StdDev | ||||
| from django.db.backends.signals import connection_created | ||||
| from django.db.backends.utils import CursorWrapper, format_number | ||||
| from django.db.models import Avg, StdDev, Sum, Variance | ||||
| from django.db.models.sql.constants import CURSOR | ||||
| from django.db.utils import ConnectionHandler | ||||
| from django.test import (TestCase, TransactionTestCase, mock, override_settings, | ||||
|     skipUnlessDBFeature, skipIfDBFeature) | ||||
| from django.test import ( | ||||
|     TestCase, TransactionTestCase, mock, override_settings, skipIfDBFeature, | ||||
|     skipUnlessDBFeature, | ||||
| ) | ||||
| from django.test.utils import ignore_warnings, str_prefix | ||||
| from django.utils import six | ||||
| from django.utils.deprecation import RemovedInDjango19Warning | ||||
|   | ||||
		Reference in New Issue
	
	Block a user