Skip to content

Commit

Permalink
No need to skip R0204: redefined-variable-type
Browse files Browse the repository at this point in the history
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 <browne@vmware.com>
  • Loading branch information
ericwb committed Sep 29, 2018
1 parent 7c4b9fa commit 672c686
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pylintrc
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 672c686

Please sign in to comment.