Replace wildcard imports with explicit ones

This commit is contained in:
Magnus Hagander
2014-01-01 16:33:29 +01:00
parent 756aa6ffbe
commit 94e3b79dce
19 changed files with 22 additions and 20 deletions

View File

@ -1,6 +1,8 @@
from django.contrib import admin
from pgweb.core.models import *
from pgweb.core.models import Version, OrganisationType, Organisation
from pgweb.core.models import ImportedRSSFeed, ImportedRSSItem
from pgweb.core.models import ModerationNotification
class OrganisationAdmin(admin.ModelAdmin):
list_display = ('name', 'approved', 'lastconfirmed',)