diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-03-27 23:42:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-27 23:42:58 +0900 |
commit | dfe20f116a8a36943adc1948a6ec34f85382505f (patch) | |
tree | 1e7de5710ae07c493cdb3eb5bf902cd2f81f657a /sphinx/testing/path.py | |
parent | 5734d8ad02116004721bca90df2719fdab7c9eb9 (diff) | |
parent | f9ae69d9b003b4839b39b0abc26b6a607b7e08bd (diff) | |
download | sphinx-git-dfe20f116a8a36943adc1948a6ec34f85382505f.tar.gz |
Merge pull request #4780 from tk0miya/drop_TYPE_CHECKING_in_master
Drop typing.TYPE_CHECKING
Diffstat (limited to 'sphinx/testing/path.py')
-rw-r--r-- | sphinx/testing/path.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/testing/path.py b/sphinx/testing/path.py index 5f59ad30b..209046246 100644 --- a/sphinx/testing/path.py +++ b/sphinx/testing/path.py @@ -10,11 +10,11 @@ import os import shutil import sys from io import open -from typing import TYPE_CHECKING from six import PY2, text_type -if TYPE_CHECKING: +if False: + # For type annotation from typing import Any, Callable, IO, List # NOQA |