From a4ef7a72e8f56b32e3f8965003f835b6195d8059 Mon Sep 17 00:00:00 2001 From: binaryDiv Date: Sun, 22 Sep 2019 23:14:26 +0200 Subject: [PATCH] reformat (indent with spaces) --- profiles/urls.py | 2 +- profiles/views.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/urls.py b/profiles/urls.py index 6a56106..2fcca0d 100644 --- a/profiles/urls.py +++ b/profiles/urls.py @@ -3,5 +3,5 @@ from django.urls import path from . import views urlpatterns = [ - path('', views.index, name='index') + path('', views.index, name='index') ] diff --git a/profiles/views.py b/profiles/views.py index 4b26323..a6c97b9 100644 --- a/profiles/views.py +++ b/profiles/views.py @@ -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!")