diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-07-13 23:29:38 +0900 |
|---|---|---|
| committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-07-13 23:46:17 +0900 |
| commit | 0c48a28ad7216ee064b0db564745d749c049bfd5 (patch) | |
| tree | 2bc2f13992c930c00bd3b60ea3e2c27c31e659cd /sphinx/application.py | |
| parent | 0bc530f1b7b3303e0f53e42010b629d67e79b835 (diff) | |
| download | sphinx-git-0c48a28ad7216ee064b0db564745d749c049bfd5.tar.gz | |
Fix type annotation for python 3.5.1
Diffstat (limited to 'sphinx/application.py')
| -rw-r--r-- | sphinx/application.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/application.py b/sphinx/application.py index a841f52b1..1c7a05357 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -48,7 +48,8 @@ from sphinx.util.tags import Tags if False: # For type annotation - from typing import Any, Callable, Dict, IO, Iterable, Iterator, List, Tuple, Type, Union # NOQA + from typing import Any, Callable, Dict, IO, Iterable, Iterator, List, Tuple, Union # NOQA + from typing import Type # for python3.5.1 from docutils import nodes # NOQA from docutils.parsers import Parser # NOQA from docutils.transforms import Transform # NOQA |
