diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-03-26 02:02:19 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-03-26 02:02:19 +0900 |
commit | f9ae69d9b003b4839b39b0abc26b6a607b7e08bd (patch) | |
tree | 1e7de5710ae07c493cdb3eb5bf902cd2f81f657a /sphinx/quickstart.py | |
parent | 5734d8ad02116004721bca90df2719fdab7c9eb9 (diff) | |
download | sphinx-git-f9ae69d9b003b4839b39b0abc26b6a607b7e08bd.tar.gz |
Drop typing.TYPE_CHECKING
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index dbdfb47c1..8cad0640b 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -10,12 +10,12 @@ """ import warnings -from typing import TYPE_CHECKING from sphinx.cmd.quickstart import main as _main from sphinx.deprecation import RemovedInSphinx20Warning -if TYPE_CHECKING: +if False: + # For type annotation from typing import Any # NOQA |