Skip to content

Commit 3ee5b4f

Browse files
committed
Fix pep8 issues
1 parent 52b2d45 commit 3ee5b4f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

template/app/tests.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from views import index
44

5+
56
# Create your tests here.
67
class TestView(TestCase):
78
"""Test the views of the application"""

template/app/views.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from django.shortcuts import render
22

3+
34
# Create your views here.
45
def index(request):
56
return render(request, 'index.html')

0 commit comments

Comments
 (0)