diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-03-07 11:30:01 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-03-07 19:36:41 +0900 |
commit | 941bf951acda5a27b6ff5adef6678c974b6615ba (patch) | |
tree | 21ebcfdeac2d917763b1bb155c08e9da9d4a548f /sphinx/domains/math.py | |
parent | 3b87df07ff0e875564684cf278427e31d7d4548d (diff) | |
download | sphinx-git-941bf951acda5a27b6ff5adef6678c974b6615ba.tar.gz |
Hello TYPE_CHECKING!
Diffstat (limited to 'sphinx/domains/math.py')
-rw-r--r-- | sphinx/domains/math.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/domains/math.py b/sphinx/domains/math.py index 88b6e4eb8..49c57bda8 100644 --- a/sphinx/domains/math.py +++ b/sphinx/domains/math.py @@ -10,6 +10,7 @@ import warnings from typing import Any, Dict, Iterable, List, Tuple +from typing import TYPE_CHECKING from docutils import nodes from docutils.nodes import Element, Node, system_message @@ -24,8 +25,7 @@ from sphinx.roles import XRefRole from sphinx.util import logging from sphinx.util.nodes import make_refnode -if False: - # For type annotation +if TYPE_CHECKING: from sphinx.application import Sphinx from sphinx.builders import Builder |