diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-10-20 13:43:30 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-10-20 13:43:30 +0900 |
commit | a6a2a59ab0abfaf510d3dcbc43231468d3dc1fff (patch) | |
tree | 348ba06bbdf42ef9975d318cbfc741e64379cc48 /sphinx/util/docutils.py | |
parent | b9825a2c3e531a54b381655653894113b384e2ed (diff) | |
parent | cb22be80c240ad996583d77685ef9037528e47ed (diff) | |
download | sphinx-git-a6a2a59ab0abfaf510d3dcbc43231468d3dc1fff.tar.gz |
Merge branch '2.0'
Diffstat (limited to 'sphinx/util/docutils.py')
-rw-r--r-- | sphinx/util/docutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index 00b340118..aeb069960 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -183,7 +183,7 @@ class sphinx_domains: def __enter__(self) -> None: self.enable() - def __exit__(self, exc_type: "Type[Exception]", exc_value: Exception, traceback: Any) -> bool: # NOQA + def __exit__(self, exc_type: "Type[Exception]", exc_value: Exception, traceback: Any) -> bool: # type: ignore # NOQA self.disable() return False |