linter gonna lint

This commit is contained in:
Arnold Dechamps 2024-02-27 12:36:13 +01:00
parent da22e30ab3
commit 13c76654af
No known key found for this signature in database
GPG key ID: AE66543374E41C89

View file

@ -15,12 +15,15 @@ class Index(ListView):
object_list = TLD.objects.all() object_list = TLD.objects.all()
return object_list return object_list
class About(TemplateView): class About(TemplateView):
template_name = 'about.html' template_name = 'about.html'
class Latency(TemplateView): class Latency(TemplateView):
template_name = 'latency.html' template_name = 'latency.html'
def handler404(request): def handler404(request):
return render(request, '404.html', status=404) return render(request, '404.html', status=404)