summaryrefslogtreecommitdiff
path: root/djangoproject
diff options
context:
space:
mode:
authorpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>2026-01-08 13:30:12 +0000
committerSaptak Sengupta <saptak013@gmail.com>2026-01-19 12:28:45 +0530
commitdda0344f8bea3450cd978180c97a525ecfc135eb (patch)
tree141e5c9a87540ac8112d65116602e249c35e336a /djangoproject
parentf76676c2cc21b21be32fba0c2cc547415ebcbf79 (diff)
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
Diffstat (limited to 'djangoproject')
-rw-r--r--djangoproject/urls/www.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/djangoproject/urls/www.py b/djangoproject/urls/www.py
index ea07d75f..aa216b03 100644
--- a/djangoproject/urls/www.py
+++ b/djangoproject/urls/www.py
@@ -15,9 +15,6 @@ from blog.feeds import WeblogEntryFeed
from blog.sitemaps import WeblogSitemap
from foundation.feeds import FoundationMinutesFeed
from foundation.views import CoreDevelopers
-from django.urls import path
-from django.views.generic import RedirectView
-
admin.autodiscover()
@@ -144,13 +141,12 @@ urlpatterns = [
path("svntogit/", include("svntogit.urls")),
path("", include("legacy.urls")),
path(
- "foundation/individual-membership-nomination/",
- RedirectView.as_view(
- url="https://docs.google.com/forms/d/e/1FAIpQLSd5lbWxAO-sylEEjHVKBNIpmHlhdJRf0_LCo8glnLUWd-Q2Sw/viewform",
- permanent=False,
+ "foundation/individual-membership-nomination/",
+ RedirectView.as_view(
+ url="https://docs.google.com/forms/d/e/1FAIpQLSd5lbWxAO-sylEEjHVKBNIpmHlhdJRf0_LCo8glnLUWd-Q2Sw/viewform",
+ permanent=False,
+ ),
),
-),
-
]
if settings.DEBUG: