diff mbox series

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

Message ID 20200922224501.4087749-23-jsnow@redhat.com
State New
Headers show
Series qapi: static typing conversion, pt6 | expand

Commit Message

John Snow Sept. 22, 2020, 10:44 p.m. UTC
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 mbox series

Patch

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: