From 9a6268a0131fa3be624e6d087a9f09e217f5d934 Mon Sep 17 00:00:00 2001 From: sinavir Date: Thu, 18 Dec 2025 16:10:28 +0100 Subject: [PATCH] fix: remove debug toolbar --- app/urls.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/urls.py b/app/urls.py index 6e876da..e80061b 100644 --- a/app/urls.py +++ b/app/urls.py @@ -15,7 +15,6 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ -from debug_toolbar.toolbar import debug_toolbar_urls from django.conf import settings from django.contrib import admin from django.urls import include, path @@ -30,4 +29,4 @@ urlpatterns = [ if settings.DEBUG: urlpatterns += [ path("__reload__/", include("django_browser_reload.urls")), - ] + debug_toolbar_urls() + ]