diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-18 07:25:30 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-11-02 15:24:56 -0400 |
| commit | 36ded01527b690b5df0574492af9cfcc2ea3d1dc (patch) | |
| tree | 107e2f542034f13810496fd389972f856efc33f3 /django/template/__init__.py | |
| parent | 9f76ea1eaad0db0183fa3b5bade16392db0cafbd (diff) | |
Fixed #21302 -- Fixed unused imports and import *.
Diffstat (limited to 'django/template/__init__.py')
| -rw-r--r-- | django/template/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/django/template/__init__.py b/django/template/__init__.py index ca1bd49b4f..576d3bc920 100644 --- a/django/template/__init__.py +++ b/django/template/__init__.py @@ -50,7 +50,7 @@ u'<html></html>' """ # Template lexing symbols -from django.template.base import (ALLOWED_VARIABLE_CHARS, BLOCK_TAG_END, +from django.template.base import (ALLOWED_VARIABLE_CHARS, BLOCK_TAG_END, # NOQA BLOCK_TAG_START, COMMENT_TAG_END, COMMENT_TAG_START, FILTER_ARGUMENT_SEPARATOR, FILTER_SEPARATOR, SINGLE_BRACE_END, SINGLE_BRACE_START, TOKEN_BLOCK, TOKEN_COMMENT, TOKEN_TEXT, TOKEN_VAR, @@ -58,22 +58,22 @@ from django.template.base import (ALLOWED_VARIABLE_CHARS, BLOCK_TAG_END, VARIABLE_TAG_END, VARIABLE_TAG_START, filter_re, tag_re) # Exceptions -from django.template.base import (ContextPopException, InvalidTemplateLibrary, +from django.template.base import (ContextPopException, InvalidTemplateLibrary, # NOQA TemplateDoesNotExist, TemplateEncodingError, TemplateSyntaxError, VariableDoesNotExist) # Template parts -from django.template.base import (Context, FilterExpression, Lexer, Node, +from django.template.base import (Context, FilterExpression, Lexer, Node, # NOQA NodeList, Parser, RequestContext, Origin, StringOrigin, Template, TextNode, Token, TokenParser, Variable, VariableNode, constant_string, filter_raw_string) # Compiling templates -from django.template.base import (compile_string, resolve_variable, +from django.template.base import (compile_string, resolve_variable, # NOQA unescape_string_literal, generic_tag_compiler) # Library management -from django.template.base import (Library, add_to_builtins, builtins, +from django.template.base import (Library, add_to_builtins, builtins, # NOQA get_library, get_templatetags_modules, get_text_list, import_library, libraries) |
