diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-03-07 10:45:39 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-03-07 19:36:41 +0900 |
commit | 6d4fefebf4ecee4416da016d8e647298003fb57a (patch) | |
tree | a0f8dedd36b9562a248bcf8bc8eab91d09136a58 /sphinx/util/nodes.py | |
parent | 3e0618ba3a84c7db51813cab43779d11c5fe7802 (diff) | |
download | sphinx-git-6d4fefebf4ecee4416da016d8e647298003fb57a.tar.gz |
Deprecate codes for python 3.5
Diffstat (limited to 'sphinx/util/nodes.py')
-rw-r--r-- | sphinx/util/nodes.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index fa51bec6a..6a3c6591d 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -10,7 +10,7 @@ import re import warnings -from typing import Any, Callable, Iterable, List, Set, Tuple +from typing import Any, Callable, Iterable, List, Set, Tuple, Type from typing import cast from docutils import nodes @@ -26,7 +26,6 @@ from sphinx.util import logging if False: # For type annotation - from typing import Type # for python3.5.1 from sphinx.builders import Builder from sphinx.environment import BuildEnvironment from sphinx.utils.tags import Tags |