Skip to content

Commit b4f9e3f

Browse files
authored
Remove dead code (#190)
GUS-W-13312373.
1 parent ee88776 commit b4f9e3f

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

gettingstarted/static/humans.txt

Whitespace-only changes.

gettingstarted/urls.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
from django.urls import path, include
2-
31
from django.contrib import admin
2+
from django.urls import path
43

54
admin.autodiscover()
65

hello/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from django.contrib.auth.models import AnonymousUser, User
1+
from django.contrib.auth.models import AnonymousUser
22
from django.test import TestCase, RequestFactory
33

44
from .views import index

hello/views.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
from django.shortcuts import render
2-
from django.http import HttpResponse
32

43
from .models import Greeting
54

65
# Create your views here.
76

87

98
def index(request):
10-
# return HttpResponse('Hello from Python!')
119
return render(request, "index.html")
1210

1311

0 commit comments

Comments
 (0)