diff mbox series

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

Message ID 20211124192617.3396403-24-jsnow@redhat.com (mailing list archive)
State New, archived
Headers show
Series Python: delete qemu.qmp package | expand

Commit Message

John Snow Nov. 24, 2021, 7:26 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>
---
 python/setup.cfg | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/python/setup.cfg b/python/setup.cfg
index 5140a5b322..c341e922c2 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -114,7 +114,6 @@  ignore_missing_imports = True
 disable=consider-using-f-string,
         too-many-function-args,  # mypy handles this with less false positives.
         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.