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-01-18 06:49:17 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-01-19 06:10:00 +0300
commit491620ee5685e5c509a7b334892ca008bcc4b4a1 (patch)
treefd064d37b8cc97cb737c932f43686998661b635f /sphinx/ext/ifconfig.py
parentd44ea97e984ad7109851fad5aca9e39ac27304cd (diff)
Fix mypy violations
Diffstat (limited to 'sphinx/ext/ifconfig.py')
-rw-r--r--sphinx/ext/ifconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py
index e0ecda026..297e476f5 100644
--- a/sphinx/ext/ifconfig.py
+++ b/sphinx/ext/ifconfig.py
@@ -57,7 +57,7 @@ class IfConfig(Directive):
def process_ifconfig_nodes(app, doctree, docname):
# type: (Sphinx, nodes.Node, unicode) -> None
- ns = dict((confval.name, confval.value) for confval in app.config)
+ ns = dict((confval.name, confval.value) for confval in app.config) # type: ignore
ns.update(app.config.__dict__.copy())
ns['builder'] = app.builder.name
for node in doctree.traverse(ifconfig):