diff options
| author | Aymeric Augustin | 2013-10-26 17:12:44 +0200 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-10-26 17:12:44 +0200 | 
| commit | ba9f739620d4955aabf112850122345828402f2b (patch) | |
| tree | 60aab63d17e487868ab38de239696a8d4a6f9b7a | |
| parent | cbb74b34be02990a10eb75b653425ea98fba5aae (diff) | |
| download | django-debug-toolbar-ba9f739620d4955aabf112850122345828402f2b.tar.bz2 | |
Remove unused imports.
| -rw-r--r-- | debug_toolbar/utils/tracking/__init__.py | 5 | ||||
| -rw-r--r-- | tests/tests.py | 1 | 
2 files changed, 0 insertions, 6 deletions
| diff --git a/debug_toolbar/utils/tracking/__init__.py b/debug_toolbar/utils/tracking/__init__.py index 420de1e..a8a0421 100644 --- a/debug_toolbar/utils/tracking/__init__.py +++ b/debug_toolbar/utils/tracking/__init__.py @@ -1,10 +1,5 @@  from __future__ import unicode_literals -import logging -import time -import types -from django.utils.importlib import import_module -  def replace_method(klass, method_name):      original = getattr(klass, method_name) diff --git a/tests/tests.py b/tests/tests.py index 7fb4a87..20b722b 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -8,7 +8,6 @@ import threading  from xml.etree import ElementTree as ET  import django -from django.conf import settings  from django.contrib.auth.models import User  from django.core import management  from django.db import connection, IntegrityError, transaction | 
