Reformat using black
This commit is contained in:
parent
efee4ad081
commit
a87fb49918
221 changed files with 19127 additions and 7310 deletions
|
@ -3,12 +3,20 @@ from django.utils.translation import gettext as _
|
|||
|
||||
|
||||
def about(request):
|
||||
return render(request, 'about/about.html', {
|
||||
'title': _('About'),
|
||||
})
|
||||
return render(
|
||||
request,
|
||||
"about/about.html",
|
||||
{
|
||||
"title": _("About"),
|
||||
},
|
||||
)
|
||||
|
||||
|
||||
def custom_checker_sample(request):
|
||||
return render(request, 'about/custom-checker-sample.html', {
|
||||
'title': _('Custom Checker Sample'),
|
||||
})
|
||||
return render(
|
||||
request,
|
||||
"about/custom-checker-sample.html",
|
||||
{
|
||||
"title": _("Custom Checker Sample"),
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue