Python: Apply code-review suggestion

Co-authored-by: yoff <lerchedahl@gmail.com>
This commit is contained in:
Rasmus Wriedt Larsen
2021-02-01 11:12:32 +01:00
committed by GitHub
parent 173012578e
commit 4b6a59a126

View File

@@ -37,7 +37,7 @@ class ClassView(View, Foo):
return HttpResponse('ClassView get: {}'.format(untrusted)) # $HttpResponse
# direct import with full path to `View` class (previously not supported)
# direct import with full path to `View` class
class ClassView2(django.views.generic.base.View):
def get(self, request): # $ requestHandler
pass