From 1020b0a26f0a5f6f2def9f04396656819b2097b5 Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Fri, 21 Oct 2022 00:01:04 +0200 Subject: [PATCH] Ignore useless pylint options (fixes #5950) I think we should disable this warning for unknown warnings so that old pylint versions keep working ok --- .pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc b/.pylintrc index cd4ed581a..1a89bc03d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -22,3 +22,4 @@ disable= R0915, # too-many-statements W0511, # fixme W0603, # global-statement + R0022, # useless-option-value