diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-10-20 13:33:44 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-10-20 13:33:44 +0900 |
commit | 0b719faabb640bf620d62d947b51166715d2477e (patch) | |
tree | 299d7d8365e83c4cd9c41a6db678eca0474947b9 /sphinx/util/docutils.py | |
parent | d000de6e9950de32f8a1c872232513d8196c0530 (diff) | |
download | sphinx-git-0b719faabb640bf620d62d947b51166715d2477e.tar.gz |
Fix mypy violations (for mypy-0.740)
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 |