mirror of
https://github.com/django/django.git
synced 2025-09-21 18:00:45 +00:00
Sorted imports with isort; refs #23860.
This commit is contained in:
parent
388d986b8a
commit
0ed7d15563
793 changed files with 2551 additions and 2333 deletions
|
@ -5,12 +5,12 @@ import unicodedata
|
|||
from gzip import GzipFile
|
||||
from io import BytesIO
|
||||
|
||||
from django.utils.encoding import force_text
|
||||
from django.utils.functional import allow_lazy, SimpleLazyObject
|
||||
from django.utils import six
|
||||
from django.utils.six.moves import html_entities
|
||||
from django.utils.translation import ugettext_lazy, ugettext as _, pgettext
|
||||
from django.utils.encoding import force_text
|
||||
from django.utils.functional import SimpleLazyObject, allow_lazy
|
||||
from django.utils.safestring import SafeText, mark_safe
|
||||
from django.utils.six.moves import html_entities
|
||||
from django.utils.translation import pgettext, ugettext as _, ugettext_lazy
|
||||
|
||||
if six.PY2:
|
||||
# Import force_unicode even though this module doesn't use it, because some
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue