summaryrefslogtreecommitdiff
path: root/sphinx/util/nodes.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-11-24 20:14:43 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-11-24 23:19:51 +0900
commit3c99d0060557bb33a482f3fe74c1b665fb3de010 (patch)
tree756aecf0bcb307e553f3903ee5bd9ff9b32d44f1 /sphinx/util/nodes.py
parent95dffb2af6fbdefe30f1b492adedc4036abd6f84 (diff)
downloadsphinx-git-3c99d0060557bb33a482f3fe74c1b665fb3de010.tar.gz
Add sphinx.util.typing:unicode to help mypy-3 migration
Diffstat (limited to 'sphinx/util/nodes.py')
-rw-r--r--sphinx/util/nodes.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py
index f98c72b37..a59606044 100644
--- a/sphinx/util/nodes.py
+++ b/sphinx/util/nodes.py
@@ -25,6 +25,7 @@ if False:
from typing import Any, Callable, Iterable, List, Optional, Set, Tuple, Type # NOQA
from sphinx.builders import Builder # NOQA
from sphinx.utils.tags import Tags # NOQA
+ from sphinx.util.typing import unicode # NOQA
logger = logging.getLogger(__name__)