fix linter errors

This commit is contained in:
Jan Koppe 2020-04-26 04:49:07 +02:00
parent af49f2d749
commit 8e71bd515b
Signed by: thunfisch
GPG Key ID: BE935B0735A2129B
4 changed files with 3 additions and 4 deletions

View File

@ -1,3 +1,3 @@
from django.contrib import admin
from django.contrib import admin # noqa
# Register your models here.

View File

@ -1,3 +1,3 @@
from django.db import models
from django.db import models # noqa
# Create your models here.

View File

@ -1,3 +1,3 @@
from django.test import TestCase
from django.test import TestCase # noqa
# Create your tests here.

View File

@ -1,6 +1,5 @@
from django.shortcuts import render
# Create your views here.
def index(request):
# do fancy stuff here maybe