Removed unused imports.

This commit is contained in:
Tim Graham 2014-03-21 20:18:19 -04:00
parent d74e33eb0e
commit 80e6960580
2 changed files with 1 additions and 6 deletions

View File

@ -1,11 +1,7 @@
import warnings
from django.core import signals from django.core import signals
from django.db.utils import (DEFAULT_DB_ALIAS, DataError, OperationalError, from django.db.utils import (DEFAULT_DB_ALIAS, DataError, OperationalError,
IntegrityError, InternalError, ProgrammingError, NotSupportedError, IntegrityError, InternalError, ProgrammingError, NotSupportedError,
DatabaseError, InterfaceError, Error, load_backend, DatabaseError, InterfaceError, Error, ConnectionHandler, ConnectionRouter)
ConnectionHandler, ConnectionRouter)
from django.utils.functional import cached_property
__all__ = [ __all__ = [

View File

@ -1,7 +1,6 @@
import hashlib import hashlib
import sys import sys
import time import time
import warnings
from django.conf import settings from django.conf import settings
from django.db.utils import load_backend from django.db.utils import load_backend