Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-02-21 08:40:01 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-02-21 08:40:01 +0300
commitd616e434b7923ed82ff2e622fccc3b246722518d (patch)
tree398c0c29eca2f0c0bbe8854a25d194e927a10376 /sphinx/jinja2glue.py
parent509d3a8f2ac5b41a9f39d80c760a464ae394a2d7 (diff)
Fix mypy violations
Diffstat (limited to 'sphinx/jinja2glue.py')
-rw-r--r--sphinx/jinja2glue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/jinja2glue.py b/sphinx/jinja2glue.py
index 01666d37b..f85bd77e7 100644
--- a/sphinx/jinja2glue.py
+++ b/sphinx/jinja2glue.py
@@ -171,7 +171,7 @@ class BuiltinTemplateLoader(TemplateBridge, BaseLoader):
if use_i18n:
self.environment.install_gettext_translations(builder.app.translator) # type: ignore # NOQA
- def render(self, template, context):
+ def render(self, template, context): # type: ignore
# type: (unicode, Dict) -> unicode
return self.environment.get_template(template).render(context)