Bläddra i källkod

Remove unused imports

Denis K 9 år sedan
förälder
incheckning
073906ebb8
3 ändrade filer med 1 tillägg och 5 borttagningar
  1. 1 1
      jet/dashboard/dashboard.py
  2. 0 3
      jet/models.py
  3. 0 1
      jet/utils.py

+ 1 - 1
jet/dashboard/dashboard.py

@@ -1,5 +1,5 @@
 from importlib import import_module
-from django.core.urlresolvers import resolve, reverse
+from django.core.urlresolvers import reverse
 from django.template.loader import render_to_string
 from jet.dashboard import modules
 from jet.dashboard.models import UserDashboardModule

+ 0 - 3
jet/models.py

@@ -1,10 +1,7 @@
-from importlib import import_module
-import json
 from django.db import models
 from django.utils import timezone
 from django.utils.encoding import python_2_unicode_compatible
 from django.utils.translation import ugettext_lazy as _
-from jet.utils import LazyDateTimeEncoder
 
 
 @python_2_unicode_compatible

+ 0 - 1
jet/utils.py

@@ -1,5 +1,4 @@
 import datetime
-from importlib import import_module
 import json
 from django.core.serializers.json import DjangoJSONEncoder
 from django.http import HttpResponse