From 8e2029f8ddd744acb97e236cb0703d94b12d5ff8 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 22 Oct 2013 08:28:34 -0400 Subject: Removed import * in tests. Thanks to flake8 path/to/file.py | awk -F ' ' '{ print $5 }' | sort | uniq --- tests/validators/tests.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'tests/validators') diff --git a/tests/validators/tests.py b/tests/validators/tests.py index 121d59803c..410fc15f0b 100644 --- a/tests/validators/tests.py +++ b/tests/validators/tests.py @@ -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 -- cgit v1.3