Removed unused imports.
This commit is contained in:
parent
c2d5f2903c
commit
2b4ca2ec29
|
@ -7,7 +7,6 @@ from __future__ import unicode_literals
|
||||||
|
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
from itertools import chain
|
from itertools import chain
|
||||||
import warnings
|
|
||||||
|
|
||||||
from django.core.exceptions import (
|
from django.core.exceptions import (
|
||||||
ImproperlyConfigured, ValidationError, NON_FIELD_ERRORS, FieldError)
|
ImproperlyConfigured, ValidationError, NON_FIELD_ERRORS, FieldError)
|
||||||
|
@ -18,7 +17,6 @@ from django.forms.utils import ErrorList
|
||||||
from django.forms.widgets import (SelectMultiple, HiddenInput,
|
from django.forms.widgets import (SelectMultiple, HiddenInput,
|
||||||
MultipleHiddenInput)
|
MultipleHiddenInput)
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
from django.utils.deprecation import RemovedInDjango19Warning
|
|
||||||
from django.utils.encoding import smart_text, force_text
|
from django.utils.encoding import smart_text, force_text
|
||||||
from django.utils.text import get_text_list, capfirst
|
from django.utils.text import get_text_list, capfirst
|
||||||
from django.utils.translation import ugettext_lazy as _, ugettext
|
from django.utils.translation import ugettext_lazy as _, ugettext
|
||||||
|
|
Loading…
Reference in New Issue