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>2019-03-06 17:44:44 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2019-03-06 17:44:44 +0300
commitdbefc9865d8c2c4006ed52475d1bff865358cd00 (patch)
tree87e6cc29d08b37751b13add9f4a4b90e74666b81 /sphinx/builders/latex/transforms.py
parentc747257f77f75a3945acc0b7e054040e2656be4b (diff)
Clean up import for annotations
Diffstat (limited to 'sphinx/builders/latex/transforms.py')
-rw-r--r--sphinx/builders/latex/transforms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/latex/transforms.py b/sphinx/builders/latex/transforms.py
index 579a753b4..1306e7bc1 100644
--- a/sphinx/builders/latex/transforms.py
+++ b/sphinx/builders/latex/transforms.py
@@ -21,7 +21,7 @@ from sphinx.util.nodes import NodeMatcher
if False:
# For type annotation
- from typing import Any, Dict, List, Set, Tuple, Union # NOQA
+ from typing import Any, List, Set, Tuple # NOQA
URI_SCHEMES = ('mailto:', 'http:', 'https:', 'ftp:')