Skip to content

Commit 0fedede

Browse files
committed
Replace one use of reverse_lazy with reverse.
1 parent 9c28a1f commit 0fedede

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hypha/apply/funds/views/all.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from django.db import models
1212
from django.http import HttpRequest, HttpResponse, HttpResponseForbidden
1313
from django.shortcuts import redirect, render
14-
from django.urls import reverse, reverse_lazy
14+
from django.urls import reverse
1515
from django.utils.translation import gettext as _
1616
from django.views.decorators.http import require_http_methods
1717
from django_htmx.http import HttpResponseClientRedirect, HttpResponseClientRefresh
@@ -491,7 +491,7 @@ def bulk_update_submissions_status(request: HttpRequest) -> HttpResponse:
491491
return HttpResponseClientRefresh()
492492
action = outcome_from_actions(transitions)
493493
return HttpResponseClientRedirect(
494-
reverse_lazy("apply:submissions:determinations:batch")
494+
reverse("apply:submissions:determinations:batch")
495495
+ "?action="
496496
+ action
497497
+ "&submissions="

0 commit comments

Comments
 (0)