diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-15 19:22:40 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-15 19:22:40 +0900 |
commit | d5288567fd90b77c139a0fb0dbd48e7dbe3454a5 (patch) | |
tree | e4083102c6c257d036599b2423213f36831b7f00 /sphinx/builders/devhelp.py | |
parent | e4a0f99dda967820e494fd80c7ec07cbc69401d1 (diff) | |
download | sphinx-git-d5288567fd90b77c139a0fb0dbd48e7dbe3454a5.tar.gz |
Update type annotations
Diffstat (limited to 'sphinx/builders/devhelp.py')
-rw-r--r-- | sphinx/builders/devhelp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/devhelp.py b/sphinx/builders/devhelp.py index e615de39b..f1ed3a495 100644 --- a/sphinx/builders/devhelp.py +++ b/sphinx/builders/devhelp.py @@ -132,7 +132,7 @@ class DevhelpBuilder(StandaloneHTMLBuilder): def setup(app): - # type: (Sphinx) -> None + # type: (Sphinx) -> Dict[unicode, Any] app.setup_extension('sphinx.builders.html') app.add_builder(DevhelpBuilder) |