diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-06-09 01:34:32 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-06-09 01:34:44 +0900 |
commit | 7fbf00dde550e05093b499e532d84bc9740a9d3f (patch) | |
tree | 5726e2886558c2b19ca116d010ed2b527ae69eba /sphinx/util/nodes.py | |
parent | eff48a9dac39867005f6b293e4c928a293621f26 (diff) | |
download | sphinx-git-7fbf00dde550e05093b499e532d84bc9740a9d3f.tar.gz |
Fix #7803: Fix typo in import-block for type annotation
Diffstat (limited to 'sphinx/util/nodes.py')
-rw-r--r-- | sphinx/util/nodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index 1ec3a19d0..510593757 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -31,7 +31,7 @@ if False: from sphinx.builders import Builder from sphinx.domain import IndexEntry from sphinx.environment import BuildEnvironment - from sphinx.utils.tags import Tags + from sphinx.util.tags import Tags logger = logging.getLogger(__name__) |