Add spacing for linter

This commit is contained in:
zandercymatics 2024-08-02 07:58:33 -06:00
parent 08c16a7ad3
commit e827314f78
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -30,8 +30,10 @@ class PortfolioDomainRequestsView(PortfolioDomainRequestsPermissionView, View):
template_name = "portfolio_requests.html" template_name = "portfolio_requests.html"
def get(self, request): def get(self, request):
if self.request.user.is_authenticated: if self.request.user.is_authenticated:
request.session["new_request"] = True request.session["new_request"] = True
return render(request, "portfolio_requests.html") return render(request, "portfolio_requests.html")