diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-09 01:11:22 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-09 01:11:22 +0900 |
commit | 9db86f6aaba426b15d9da837bb94360011e36093 (patch) | |
tree | 5bebfb260eca766fc190184156a477c359dfc047 /sphinx/directives/patches.py | |
parent | 441c2e306a884a1fff8f59c3b35674e906fd837a (diff) | |
download | sphinx-git-9db86f6aaba426b15d9da837bb94360011e36093.tar.gz |
Fix mypy violations (with mypy-0.931)
Diffstat (limited to 'sphinx/directives/patches.py')
-rw-r--r-- | sphinx/directives/patches.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 3c532b812..d76bb74c7 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -83,7 +83,7 @@ class Meta(MetaBase, SphinxDirective): # docutils' meta nodes aren't picklable because the class is nested meta.__class__ = addnodes.meta - return result # type: ignore + return result class RSTTable(tables.RSTTable): |