From 564b903292c59e211dfce5a1e065e4583e9c04bb 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 | 3 +-- 2 files changed, 2 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..90845de 100644 --- a/profiles/views.py +++ b/profiles/views.py @@ -3,5 +3,4 @@ from django.shortcuts import render # Create your views here. def index(request): - return HttpResponse("Hello worlds!") - + return HttpResponse("Hello worlds!")