diff options
Diffstat (limited to 'sphinx/builders/applehelp.py')
-rw-r--r-- | sphinx/builders/applehelp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/builders/applehelp.py b/sphinx/builders/applehelp.py index 66ee82ff8..3c2782802 100644 --- a/sphinx/builders/applehelp.py +++ b/sphinx/builders/applehelp.py @@ -30,6 +30,7 @@ import subprocess if False: # For type annotation + from typing import Any # NOQA from sphinx.application import Sphinx # NOQA # Use plistlib.dump in 3.4 and above @@ -271,7 +272,7 @@ class AppleHelpBuilder(StandaloneHTMLBuilder): def setup(app): - # type: (Sphinx) -> None + # type: (Sphinx) -> Dict[unicode, Any] app.setup_extension('sphinx.builders.html') app.add_builder(AppleHelpBuilder) |