From 9aa261232767d76574aa58c6492e9e1428a8854b Mon Sep 17 00:00:00 2001 From: Johannes Schriewer Date: Wed, 16 Dec 2020 01:25:43 +0100 Subject: [PATCH] Cleanup --- inventory/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inventory/urls.py b/inventory/urls.py index fbf026e..075ef0a 100644 --- a/inventory/urls.py +++ b/inventory/urls.py @@ -13,8 +13,8 @@ Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ -from django.contrib import admin -from django.urls import path, include + +from django.urls import path from .views import WorkshopListView, AreaListView, BoxListView, ItemListView, ManufacturerListView, DistributorListView from .views import WorkshopView, AreaView, BoxView, ItemView, DistributorView, ManufacturerView