diff mbox series

[08/10] python: re-enable pylint duplicate-code warnings

Message ID 20220321210847.914787-9-jsnow@redhat.com
State New
Headers show
Series Python: Remove synchronous QMP library | expand

Commit Message

John Snow March 21, 2022, 9:08 p.m. UTC
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 mbox series

Patch

diff --git a/python/setup.cfg b/python/setup.cfg
index 4340c29a24..49e3c285f1 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.