diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-07-24 13:36:38 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-07-24 13:36:49 +0900 |
commit | d177956365a39b7045f7ef69049c5c2e0dc06829 (patch) | |
tree | 89895c7298a73a84be4021758848fe9c0878e128 /sphinx/setup_command.py | |
parent | c780492a4f1d09101d71acdc3d5ca275ead98039 (diff) | |
download | sphinx-git-d177956365a39b7045f7ef69049c5c2e0dc06829.tar.gz |
Fix a mypy violation
Diffstat (limited to 'sphinx/setup_command.py')
-rw-r--r-- | sphinx/setup_command.py | 2 |
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 |