diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8403e50..6d95718 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,6 @@ name: tests on: pull_request: branches: - - develop - main jobs: diff --git a/testapp/testapp/urls.py b/testapp/testapp/urls.py index b542848..81e74d7 100644 --- a/testapp/testapp/urls.py +++ b/testapp/testapp/urls.py @@ -13,10 +13,11 @@ 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 urlpatterns = [ - path('admin/', admin.site.urls), - path('api/notify/', include(('notifications.urls', 'notifications'))), + path("admin/", admin.site.urls), + path("api/notify/", include(("notifications.urls", "notifications"))), ]