1
0
mirror of https://github.com/django/django.git synced 2025-10-26 07:06:08 +00:00

Sorted imports in __init__.py files.

This commit is contained in:
Tim Graham
2015-06-15 14:07:31 -04:00
parent 4a66a69239
commit 7da3923ba0
33 changed files with 189 additions and 173 deletions

View File

@@ -1,9 +1,10 @@
from django.core import signals
from django.db.utils import (DEFAULT_DB_ALIAS, DJANGO_VERSION_PICKLE_KEY,
DataError, OperationalError, IntegrityError, InternalError, ProgrammingError,
NotSupportedError, DatabaseError, InterfaceError, Error, ConnectionHandler,
ConnectionRouter)
from django.db.utils import (
DEFAULT_DB_ALIAS, DJANGO_VERSION_PICKLE_KEY, ConnectionHandler,
ConnectionRouter, DatabaseError, DataError, Error, IntegrityError,
InterfaceError, InternalError, NotSupportedError, OperationalError,
ProgrammingError,
)
__all__ = [
'backend', 'connection', 'connections', 'router', 'DatabaseError',