reformat (indent with spaces)
This commit is contained in:
parent
4f066eade5
commit
a4ef7a72e8
|
|
@ -3,5 +3,5 @@ from django.urls import path
|
|||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.index, name='index')
|
||||
path('', views.index, name='index')
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from django.http import HttpResponse
|
||||
from django.shortcuts import render
|
||||
|
||||
|
||||
# Create your views here.
|
||||
def index(request):
|
||||
return HttpResponse("Hello worlds!")
|
||||
|
||||
return HttpResponse("Hello worlds!")
|
||||
|
|
|
|||
Loading…
Reference in New Issue