From fc899be71d129ca72886d11cda095e4d7b95d6c4 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Wed, 26 Sep 2018 16:06:36 -0700 Subject: [PATCH] No need to skip R0204: redefined-variable-type The pylint config for the project is skipping the check of R0204, but there are no occurances of this warning in the code. Signed-off-by: Eric Brown --- pylintrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pylintrc b/pylintrc index 366b29a7e..14d7fd668 100644 --- a/pylintrc +++ b/pylintrc @@ -12,7 +12,6 @@ # TODO(browne): fix these in the future # C0103: invalid-name # E1101: no-member -# R0204: redefined-variable-type # R0902: too-many-instance-attributes # R0912: too-many-branches # R0913: too-many-arguments @@ -28,7 +27,7 @@ # W0613: unused-argument # W0621: redefined-outer-name # W0703: broad-except -disable=C0111,C0301,C0325,F0401,W0511,W0142,W0622,C0103,E1101,R0204,R0902,R0912,R0913,R0914,R0915,W0110,W0141,W0201,W0401,W0603,W0212,W0612,W0613,W0621,W0703 +disable=C0111,C0301,C0325,F0401,W0511,W0142,W0622,C0103,E1101,R0902,R0912,R0913,R0914,R0915,W0110,W0141,W0201,W0401,W0603,W0212,W0612,W0613,W0621,W0703 [Basic] # Variable names can be 1 to 31 characters long, with lowercase and underscores