Removed unused imports

master
Brandon Taylor 2019-06-03 14:13:21 -04:00
parent 97003cd5cc
commit bfb1969e50
2 changed files with 6 additions and 2 deletions

4
.vscode/settings.json vendored 100644
View File

@ -0,0 +1,4 @@
{
"python.pythonPath": "/Users/btaylor/virtualenvs/django-admin-sortable/bin/python",
"python.linting.pylintPath": "/Users/btaylor/virtualenvs/django-admin-sortable/bin/pylint"
}

View File

@ -11,8 +11,8 @@ from django.contrib.contenttypes.admin import (GenericStackedInline,
GenericTabularInline) GenericTabularInline)
from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.models import ContentType
from django.core.exceptions import PermissionDenied from django.core.exceptions import PermissionDenied
from django.http import HttpResponse, Http404 from django.http import HttpResponse
from django.shortcuts import render, get_object_or_404 from django.shortcuts import render
from django.template.defaultfilters import capfirst from django.template.defaultfilters import capfirst
from django.utils.decorators import method_decorator from django.utils.decorators import method_decorator
from django.views.decorators.http import require_POST from django.views.decorators.http import require_POST