1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +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

@@ -33,7 +33,14 @@ import os
from decimal import Decimal
from django.core.files.uploadedfile import SimpleUploadedFile
from django.forms import *
from django.forms import (
BooleanField, CharField, ChoiceField, ComboField, DateField, DateTimeField,
DecimalField, EmailField, Field, FileField, FilePathField, FloatField,
Form, forms, HiddenInput, IntegerField, MultipleChoiceField,
NullBooleanField, NumberInput, PasswordInput, RadioSelect, RegexField,
SplitDateTimeField, TextInput, TimeField, TypedChoiceField,
TypedMultipleChoiceField, URLField, ValidationError, Widget,
)
from django.test import SimpleTestCase
from django.utils import formats
from django.utils import six