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"