Add flake8 configuration, fix flake8 complaints

This commit is contained in:
Peter Bittner 2015-09-02 23:30:04 +02:00
parent c408224e02
commit 767eb75e7d
6 changed files with 21 additions and 23 deletions

View file

@ -1,5 +1,5 @@
from django.contrib import admin
from todo.models import Item, User, List, Comment
from todo.models import Item, List, Comment
class ItemAdmin(admin.ModelAdmin):
@ -15,4 +15,4 @@ class CommentAdmin(admin.ModelAdmin):
admin.site.register(List)
admin.site.register(Comment, CommentAdmin)
admin.site.register(Item, ItemAdmin)
admin.site.register(Item, ItemAdmin)