qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 22/25] qapi/schema.py: Ignore unused argument for check()


From: John Snow
Subject: [PATCH 22/25] qapi/schema.py: Ignore unused argument for check()
Date: Tue, 22 Sep 2020 18:44:58 -0400

This is an interface with a default implementation. Pylint doesn't have
enough context to be aware of this.

Signed-off-by: John Snow <jsnow@redhat.com>
---
 scripts/qapi/schema.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/qapi/schema.py b/scripts/qapi/schema.py
index 271befea1c..6ecbc2aa6b 100644
--- a/scripts/qapi/schema.py
+++ b/scripts/qapi/schema.py
@@ -86,6 +86,7 @@ def c_name(self) -> str:
         return c_name(self.name)
 
     def check(self, schema: 'QAPISchema') -> None:
+        # pylint: disable=unused-argument
         assert not self._checked
         seen: Dict[str, 'QAPISchemaMember'] = {}
         for feature in self.features:
-- 
2.26.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]