From ce6bd80081ecfee175a3d8845876b909ce821b5d Mon Sep 17 00:00:00 2001 From: Ivan Shakhman Date: Wed, 30 Oct 2024 15:05:54 +0200 Subject: [PATCH] Solution --- author/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/author/urls.py b/author/urls.py index e63294e..a346fb1 100644 --- a/author/urls.py +++ b/author/urls.py @@ -6,7 +6,7 @@ from author.views import AuthorViewSet router = routers.DefaultRouter() -router.register(r"manage", AuthorViewSet, basename='manage') +router.register(r"manage", AuthorViewSet, basename="manage") urlpatterns = [path("", include(router.urls))] app_name = "author"