root: fix linting errors

This commit is contained in:
Jens Langhammer
2020-05-27 11:26:48 +02:00
parent 9330a03273
commit e2804b9755
7 changed files with 11 additions and 10 deletions

View File

@ -74,7 +74,7 @@ class AccessRequiredView(AccessMixin, View):
return render(
request,
"login/denied.html",
{"title": _("You don't have access to this application"),},
{"title": _("You don't have access to this application")},
)
return super().dispatch(request, *args, **kwargs)
@ -175,7 +175,7 @@ class AuthorizeView(AccessRequiredView):
return render(
request,
"saml/idp/login.html",
{"provider": self.provider, "title": "Authorize Application",},
{"provider": self.provider, "title": "Authorize Application"},
)
except KeyError: