Add flake8 configuration, fix flake8 complaints
This commit is contained in:
parent
c408224e02
commit
767eb75e7d
6 changed files with 21 additions and 23 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue