summaryrefslogtreecommitdiff
path: root/sphinx/setup_command.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-07-19 01:18:39 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-07-19 01:18:39 +0900
commitc62aefd71f24dbf6b40f4f1624523b9b2eae4bf4 (patch)
tree725197c5ac935c6b537b7ca271e98699ca69dbfe /sphinx/setup_command.py
parent4cd90a644a30e14ba4a9138f634f90b448c05cff (diff)
downloadsphinx-git-c62aefd71f24dbf6b40f4f1624523b9b2eae4bf4.tar.gz
Fix mypy violation
Diffstat (limited to 'sphinx/setup_command.py')
-rw-r--r--sphinx/setup_command.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py
index c3957fefc..ca3256c19 100644
--- a/sphinx/setup_command.py
+++ b/sphinx/setup_command.py
@@ -28,7 +28,7 @@ from sphinx.util.osutil import abspath
if False:
# For type annotation
- from typing import Any, List, Tuple # NOQA
+ from typing import Any, Dict, List, Tuple # NOQA
class BuildDoc(Command):
@@ -165,7 +165,7 @@ class BuildDoc(Command):
status_stream = StringIO()
else:
status_stream = sys.stdout # type: ignore
- confoverrides = {}
+ confoverrides = {} # type: Dict[unicode, Any]
if self.project:
confoverrides['project'] = self.project
if self.version: