mirror of
https://github.com/django/django.git
synced 2025-08-30 15:27:40 +00:00
Removed import * in tests.
Thanks to flake8 path/to/file.py | awk -F ' ' '{ print $5 }' | sort | uniq
This commit is contained in:
parent
2110b31365
commit
8e2029f8dd
16 changed files with 76 additions and 16 deletions
|
@ -7,7 +7,13 @@ import types
|
|||
from unittest import TestCase
|
||||
|
||||
from django.core.exceptions import ValidationError
|
||||
from django.core.validators import *
|
||||
from django.core.validators import (
|
||||
BaseValidator, EmailValidator, MaxLengthValidator, MaxValueValidator,
|
||||
MinLengthValidator, MinValueValidator, RegexValidator, URLValidator,
|
||||
validate_comma_separated_integer_list, validate_email, validate_integer,
|
||||
validate_ipv46_address, validate_ipv4_address, validate_ipv6_address,
|
||||
validate_slug,
|
||||
)
|
||||
from django.test.utils import str_prefix
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue