aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2020-10-09 12:15:47 -0400
committerMarkus Armbruster <armbru@redhat.com>2020-10-10 11:37:48 +0200
commit96670e89eca099a92492818b45427b567b1fb0de (patch)
tree4bb63aebc65e9cd230b4b5b2f942570ba8cfa83f /scripts
parentf5d4361cda562871ea8c480ce0cf5b1bc835456b (diff)
downloadqemu-96670e89eca099a92492818b45427b567b1fb0de.zip
qemu-96670e89eca099a92492818b45427b567b1fb0de.tar.gz
qemu-96670e89eca099a92492818b45427b567b1fb0de.tar.bz2
qapi/source.py: delint with pylint
Shush an error and leave a hint for future cleanups when we're allowed to use Python 3.7+. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Cleber Rosa <crosa@redhat.com> Tested-by: Cleber Rosa <crosa@redhat.com> Message-Id: <20201009161558.107041-26-jsnow@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/qapi/pylintrc1
-rw-r--r--scripts/qapi/source.py3
2 files changed, 3 insertions, 1 deletions
diff --git a/scripts/qapi/pylintrc b/scripts/qapi/pylintrc
index 507f155..d840b15 100644
--- a/scripts/qapi/pylintrc
+++ b/scripts/qapi/pylintrc
@@ -7,7 +7,6 @@ ignore-patterns=error.py,
gen.py,
parser.py,
schema.py,
- source.py,
types.py,
visit.py,
diff --git a/scripts/qapi/source.py b/scripts/qapi/source.py
index 27af529..d7a79a9 100644
--- a/scripts/qapi/source.py
+++ b/scripts/qapi/source.py
@@ -15,6 +15,9 @@ from typing import List, Optional, TypeVar
class QAPISchemaPragma:
+ # Replace with @dataclass in Python 3.7+
+ # pylint: disable=too-few-public-methods
+
def __init__(self) -> None:
# Are documentation comments required?
self.doc_required = False