mirror of
https://github.com/django/django.git
synced 2025-11-03 05:13:23 +00:00
Fixed E305 flake8 warnings.
This commit is contained in:
parent
6072de727f
commit
967be82443
114 changed files with 360 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ from django.http import FileResponse, HttpResponse
|
|||
def helloworld(request):
|
||||
return HttpResponse("Hello World!")
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
url("^$", helloworld),
|
||||
url(r'^file/$', lambda x: FileResponse(open(__file__, 'rb'))),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue