From a335e1bd7e6bc2800791d2431d8d1da9686ef7a0 Mon Sep 17 00:00:00 2001 From: astaric Date: Wed, 26 Jul 2017 23:12:29 +0200 Subject: [PATCH] lint: disable invalid-sequence-index check False positives wherever we index with settings. --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 0d14f044c3f..b74f7141305 100644 --- a/pylintrc +++ b/pylintrc @@ -72,7 +72,7 @@ disable= parameter-unpacking,long-suffix,cmp-method,using-cmp-argument, useless-suppression,import-error, empty-docstring,missing-docstring,redefined-outer-name,redefined-builtin, - attribute-defined-outside-init, no-else-return, len-as-condition + attribute-defined-outside-init, no-else-return, len-as-condition, invalid-sequence-index [REPORTS]