[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 6/9] python: re-enable pylint duplicate-code warnings
From: |
John Snow |
Subject: |
[PATCH v2 6/9] python: re-enable pylint duplicate-code warnings |
Date: |
Wed, 30 Mar 2022 13:28:09 -0400 |
With the old library gone, there's nothing duplicated in the tree, so
the warning suppression can be removed.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Beraldo Leal <bleal@redhat.com>
---
python/setup.cfg | 1 -
1 file changed, 1 deletion(-)
diff --git a/python/setup.cfg b/python/setup.cfg
index 4340c29a24f..49e3c285f19 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -118,7 +118,6 @@ disable=consider-using-f-string,
too-many-function-args, # mypy handles this with less false positives.
too-many-instance-attributes,
no-member, # mypy also handles this better.
- duplicate-code, # To be removed by the end of this patch series.
[pylint.basic]
# Good variable names which should always be accepted, separated by a comma.
--
2.34.1
- [PATCH v2 0/9] Python: Remove synchronous QMP library, John Snow, 2022/03/30
- [PATCH v2 1/9] python: temporarily silence pylint duplicate-code warnings, John Snow, 2022/03/30
- [PATCH v2 2/9] python/aqmp: take QMPBadPortError and parse_address from qemu.qmp, John Snow, 2022/03/30
- [PATCH v2 6/9] python: re-enable pylint duplicate-code warnings,
John Snow <=
- [PATCH v2 8/9] python: rename 'aqmp-tui' to 'qmp-tui', John Snow, 2022/03/30
- [PATCH v2 4/9] python/aqmp: copy qmp docstrings to qemu.aqmp.legacy, John Snow, 2022/03/30
- [PATCH v2 9/9] python/qmp: remove pylint workaround from legacy.py, John Snow, 2022/03/30
- [PATCH v2 5/9] python: remove the old QMP package, John Snow, 2022/03/30
- [PATCH v2 3/9] python/aqmp: fully separate from qmp.QEMUMonitorProtocol, John Snow, 2022/03/30
- [PATCH v2 7/9] python: rename qemu.aqmp to qemu.qmp, John Snow, 2022/03/30
- Re: [PATCH v2 0/9] Python: Remove synchronous QMP library, John Snow, 2022/03/30