diff --git a/portal/admin.py b/portal/admin.py index 8c38f3f..6af52da 100644 --- a/portal/admin.py +++ b/portal/admin.py @@ -1,3 +1,3 @@ -from django.contrib import admin +from django.contrib import admin # noqa # Register your models here. diff --git a/portal/models.py b/portal/models.py index 71a8362..9d57c55 100644 --- a/portal/models.py +++ b/portal/models.py @@ -1,3 +1,3 @@ -from django.db import models +from django.db import models # noqa # Create your models here. diff --git a/portal/tests.py b/portal/tests.py index 7ce503c..9a30df3 100644 --- a/portal/tests.py +++ b/portal/tests.py @@ -1,3 +1,3 @@ -from django.test import TestCase +from django.test import TestCase # noqa # Create your tests here. diff --git a/portal/views.py b/portal/views.py index 93b5098..74c243c 100644 --- a/portal/views.py +++ b/portal/views.py @@ -1,6 +1,5 @@ from django.shortcuts import render -# Create your views here. def index(request): # do fancy stuff here maybe