summaryrefslogtreecommitdiff
path: root/sphinx/setup_command.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-07-24 13:36:38 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-07-24 13:36:49 +0900
commitd177956365a39b7045f7ef69049c5c2e0dc06829 (patch)
tree89895c7298a73a84be4021758848fe9c0878e128 /sphinx/setup_command.py
parentc780492a4f1d09101d71acdc3d5ca275ead98039 (diff)
downloadsphinx-git-d177956365a39b7045f7ef69049c5c2e0dc06829.tar.gz
Fix a mypy violation
Diffstat (limited to 'sphinx/setup_command.py')
-rw-r--r--sphinx/setup_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py
index 3622456c3..29a9dace7 100644
--- a/sphinx/setup_command.py
+++ b/sphinx/setup_command.py
@@ -106,7 +106,7 @@ class BuildDoc(Command):
self.link_index = False
self.copyright = ''
# Link verbosity to distutils' (which uses 1 by default).
- self.verbosity = self.distribution.verbose - 1
+ self.verbosity = self.distribution.verbose - 1 # type: ignore
self.traceback = False
self.nitpicky = False
self.keep_going = False