From 9db86f6aaba426b15d9da837bb94360011e36093 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 9 Jan 2022 01:11:22 +0900 Subject: [PATCH] Fix mypy violations (with mypy-0.931) --- sphinx/directives/patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):