diff options
author | John Snow | 2022-03-30 19:28:12 +0200 |
---|---|---|
committer | John Snow | 2022-04-21 17:01:00 +0200 |
commit | 47430775ed1a48d7beb2c7b8d7feaab73104ec46 (patch) | |
tree | 114dead1a295e4452e0a6d058edec63ba3707ed3 /python | |
parent | python: rename 'aqmp-tui' to 'qmp-tui' (diff) | |
download | qemu-47430775ed1a48d7beb2c7b8d7feaab73104ec46.tar.gz qemu-47430775ed1a48d7beb2c7b8d7feaab73104ec46.tar.xz qemu-47430775ed1a48d7beb2c7b8d7feaab73104ec46.zip |
python/qmp: remove pylint workaround from legacy.py
Pylint upgraded recently (2.13.z) and having a pylint: disable comment
in the middle of an argument field causes it some grief (It appears to
stop parsing when it encounters it, causing some syntax problems). Since
the duplicate line threshold was bumped up in 22305c2a081b, we don't
need this workaround anymore. Drop it.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@openvz.org>
Message-id: 20220330172812.3427355-10-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python')
-rw-r--r-- | python/qemu/qmp/legacy.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/python/qemu/qmp/legacy.py b/python/qemu/qmp/legacy.py index a8629b44df..03b5574618 100644 --- a/python/qemu/qmp/legacy.py +++ b/python/qemu/qmp/legacy.py @@ -106,8 +106,6 @@ class QEMUMonitorProtocol: return self def __exit__(self, - # pylint: disable=duplicate-code - # see https://github.com/PyCQA/pylint/issues/3619 exc_type: Optional[Type[BaseException]], exc_val: Optional[BaseException], exc_tb: Optional[TracebackType]) -> None: |