remove unneeded imports from bar app

This commit is contained in:
Thomas Steen Rasmussen 2018-03-04 14:31:13 +01:00
parent 477177a936
commit 6980f53a96
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,4 @@
from .models import ProductCategory, Product
from .models import ProductCategory
from django.views.generic import ListView
@ -7,3 +6,4 @@ class MenuView(ListView):
model = ProductCategory
template_name = "bar_menu.html"
context_object_name = "categories"