1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

Removed import * in tests.

Thanks to flake8 path/to/file.py | awk -F ' ' '{ print $5 }' | sort | uniq
This commit is contained in:
Tim Graham
2013-10-22 08:28:34 -04:00
parent 2110b31365
commit 8e2029f8dd
16 changed files with 76 additions and 16 deletions

View File

@@ -1,7 +1,15 @@
from django.contrib import admin
from django import forms
from .models import *
from .models import (
Author, BinaryTree, CapoFamiglia, Chapter, ChildModel1, ChildModel2,
Consigliere, EditablePKBook, ExtraTerrestrial, Fashionista, Holder,
Holder2, Holder3, Holder4, Inner, Inner2, Inner3, Inner4Stacked,
Inner4Tabular, NonAutoPKBook, Novel, ParentModelWithCustomPk, Poll,
Profile, ProfileCollection, Question, ReadOnlyInline, ShoppingWeakness,
Sighting, SomeChildModel, SomeParentModel, SottoCapo, Title,
TitleCollection,
)
site = admin.AdminSite(name="admin")