diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-10-20 13:42:10 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-10-20 13:42:10 +0900 |
commit | cb22be80c240ad996583d77685ef9037528e47ed (patch) | |
tree | b2eb7dea65793a72dfaf3cd4463adb7f2284f094 /sphinx/util/docutils.py | |
parent | 6d352e5689423f89738091b80efe716051f183eb (diff) | |
parent | f30e2af762cb678037340112242e0d33134a1b12 (diff) | |
download | sphinx-git-cb22be80c240ad996583d77685ef9037528e47ed.tar.gz |
Merge branch '2.2.1' into 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 0f732411c..e455d0aad 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -187,7 +187,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 |