Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 04:45:39 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 13:36:41 +0300
commit6d4fefebf4ecee4416da016d8e647298003fb57a (patch)
treea0f8dedd36b9562a248bcf8bc8eab91d09136a58 /sphinx/roles.py
parent3e0618ba3a84c7db51813cab43779d11c5fe7802 (diff)
Deprecate codes for python 3.5
Diffstat (limited to 'sphinx/roles.py')
-rw-r--r--sphinx/roles.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/roles.py b/sphinx/roles.py
index a42a5610d..45a628533 100644
--- a/sphinx/roles.py
+++ b/sphinx/roles.py
@@ -10,8 +10,7 @@
import re
import warnings
-from typing import Any, Dict, List, Tuple
-from typing import Type # for python3.5.1
+from typing import Any, Dict, List, Tuple, Type
from docutils import nodes, utils
from docutils.nodes import Element, Node, TextElement, system_message